jedison 1.3.0 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/dist/cjs/jedison.cjs +1 -1
- package/dist/cjs/jedison.cjs.map +1 -1
- package/dist/esm/jedison.js +31 -5
- package/dist/esm/jedison.js.map +1 -1
- package/dist/umd/jedison.umd.js +1 -1
- package/dist/umd/jedison.umd.js.map +1 -1
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jedison",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "A JavaScript Library that generates forms from JSON Schemas, to editing and validate JSON.",
|
|
5
5
|
"main": "./dist/cjs/jedison.cjs",
|
|
6
6
|
"module": "./dist/esm/jedison.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"e2e:b4": "yarn e2e:clean && THEME='bootstrap4' start-server-and-test serve http://localhost:8181 'codeceptjs run-workers 10 -c tests/e2e/codecept.conf.cjs'",
|
|
35
35
|
"e2e:b5": "yarn e2e:clean && THEME='bootstrap5' start-server-and-test serve http://localhost:8181 'codeceptjs run-workers 10 -c tests/e2e/codecept.conf.cjs'",
|
|
36
36
|
"e2e:*": "yarn e2e && yarn e2e:b3 && yarn e2e:b4 && yarn e2e:b5",
|
|
37
|
-
"e2e:grep": "yarn e2e:clean && SHOW=true THEME='bootstrap5' start-server-and-test serve http://localhost:8181 'codeceptjs run -c tests/e2e/codecept.conf.cjs --steps --debug --grep @
|
|
37
|
+
"e2e:grep": "yarn e2e:clean && SHOW=true THEME='bootstrap5' start-server-and-test serve http://localhost:8181 'codeceptjs run -c tests/e2e/codecept.conf.cjs --steps --debug --grep @nav-warning'",
|
|
38
38
|
"lint": "eslint -c ./.eslintrc.json ./src ./tests",
|
|
39
39
|
"lint:fix": "eslint --fix -c ./.eslintrc.json ./src ./tests",
|
|
40
40
|
"test:full": "yarn e2e:clean && yarn e2e && yarn unit",
|
|
@@ -83,13 +83,14 @@
|
|
|
83
83
|
"js-yaml": ">=4.1.1",
|
|
84
84
|
"ws": "^8.18.3",
|
|
85
85
|
"braces": "^3.0.3",
|
|
86
|
-
"brace-expansion": "
|
|
86
|
+
"brace-expansion": ">=2.0.1",
|
|
87
87
|
"axios": ">=1.13.5",
|
|
88
88
|
"cross-spawn": "^7.0.5",
|
|
89
89
|
"tar-fs": ">=3.1.1",
|
|
90
90
|
"tmp": "^0.2.4",
|
|
91
91
|
"glob": ">=11.1.0",
|
|
92
92
|
"diff": ">=8.0.3",
|
|
93
|
-
"lodash": ">=4.17.23"
|
|
93
|
+
"lodash": ">=4.17.23",
|
|
94
|
+
"minimatch": ">=10.2.1"
|
|
94
95
|
}
|
|
95
96
|
}
|