Publish v8.2.0
This commit is contained in:
parent
dab47eef75
commit
259b32d441
|
@ -3,6 +3,13 @@
|
|||
https://github.com/josdejong/jsoneditor
|
||||
|
||||
|
||||
## 2020-01-16, version 8.2.0
|
||||
|
||||
- Make it easy to create custom styling by overriding default SASS variable
|
||||
values, see #881. Thanks @petermanders89.
|
||||
- Update `ace` to `v1.4.8`.
|
||||
|
||||
|
||||
## 2020-01-06, version 8.1.2
|
||||
|
||||
- Fix #873: buttons Format, Compact, and Repair not supporting
|
||||
|
|
File diff suppressed because it is too large
Load Diff
14
package.json
14
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "8.1.2",
|
||||
"version": "8.2.0",
|
||||
"main": "./index",
|
||||
"description": "A web-based tool to view, edit, format, and validate JSON",
|
||||
"tags": [
|
||||
|
@ -26,7 +26,7 @@
|
|||
"prepublishOnly": "npm test && npm run build"
|
||||
},
|
||||
"dependencies": {
|
||||
"ace-builds": "^1.4.7",
|
||||
"ace-builds": "^1.4.8",
|
||||
"ajv": "^6.10.2",
|
||||
"javascript-natural-sort": "^0.7.1",
|
||||
"jmespath": "^0.15.0",
|
||||
|
@ -36,9 +36,9 @@
|
|||
"vanilla-picker": "^2.10.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.7.7",
|
||||
"@babel/preset-env": "^7.7.7",
|
||||
"@babel/register": "^7.7.7",
|
||||
"@babel/core": "^7.8.3",
|
||||
"@babel/preset-env": "^7.8.3",
|
||||
"@babel/register": "^7.8.3",
|
||||
"babel-loader": "^8.0.6",
|
||||
"btoa": "^1.2.1",
|
||||
"date-format": "^3.0.0",
|
||||
|
@ -47,12 +47,12 @@
|
|||
"gulp-clean-css": "^4.2.0",
|
||||
"gulp-concat-css": "^3.1.0",
|
||||
"gulp-sass": "^4.0.2",
|
||||
"jsdom": "^15.2.1",
|
||||
"jsdom": "^16.0.0",
|
||||
"json-loader": "^0.5.7",
|
||||
"mkdirp": "^0.5.1",
|
||||
"mocha": "^7.0.0",
|
||||
"standard": "^14.3.1",
|
||||
"uglify-js": "^3.7.3",
|
||||
"uglify-js": "^3.7.5",
|
||||
"webpack": "^4.41.5"
|
||||
},
|
||||
"files": [
|
||||
|
|
Loading…
Reference in New Issue