jedison 0.3.21 → 0.3.23
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 +12 -1
- package/README.md +45 -2
- package/dist/cjs/jedison.cjs +1 -1
- package/dist/cjs/jedison.cjs.map +1 -1
- package/dist/esm/jedison.js +91 -24
- 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 +13 -10
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jedison",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "JavaScript Library
|
|
3
|
+
"version": "0.3.23",
|
|
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",
|
|
7
7
|
"type": "module",
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
"build": "vite build --config ./vite.config.prod.js",
|
|
29
29
|
"prebuild": "vite build --config ./vite.config.pages.js",
|
|
30
30
|
"unit": "yarn build && jest --config=./tests/unit/jest.config.cjs",
|
|
31
|
-
"e2e": "codeceptjs run-workers 10 -c tests/e2e/codecept.conf.cjs",
|
|
32
|
-
"e2e:b3": "THEME='bootstrap3'
|
|
33
|
-
"e2e:b4": "THEME='bootstrap4'
|
|
34
|
-
"e2e:b5": "THEME='bootstrap5'
|
|
35
|
-
"e2e:*": "
|
|
36
|
-
"e2e:grep": "SHOW=true THEME='bootstrap5' codeceptjs run -c tests/e2e/codecept.conf.cjs --steps --debug --grep
|
|
31
|
+
"e2e": "start-server-and-test serve http://localhost:8181 'codeceptjs run-workers 10 -c tests/e2e/codecept.conf.cjs'",
|
|
32
|
+
"e2e:b3": "THEME='bootstrap3' yarn e2e",
|
|
33
|
+
"e2e:b4": "THEME='bootstrap4' yarn e2e",
|
|
34
|
+
"e2e:b5": "THEME='bootstrap5' yarn e2e",
|
|
35
|
+
"e2e:*": "yarn e2e && yarn e2e:b3 && yarn e2e:b4 && yarn e2e:b5",
|
|
36
|
+
"e2e:grep": "SHOW=true THEME='bootstrap5' start-server-and-test serve http://localhost:8181 'codeceptjs run -c tests/e2e/codecept.conf.cjs --steps --debug --grep @issue-8'",
|
|
37
37
|
"lint": "eslint -c ./.eslintrc.json ./src ./tests",
|
|
38
38
|
"lint:fix": "eslint --fix -c ./.eslintrc.json ./src ./tests",
|
|
39
|
-
"test:full": "yarn
|
|
39
|
+
"test:full": "yarn e2e && yarn unit",
|
|
40
40
|
"postversion": "git push && git push --tags",
|
|
41
41
|
"release": "npm publish --access public"
|
|
42
42
|
},
|
|
@@ -72,16 +72,19 @@
|
|
|
72
72
|
"json-schema-test-suite": "https://github.com/json-schema-org/JSON-Schema-Test-Suite.git",
|
|
73
73
|
"puppeteer": "^13.5.2",
|
|
74
74
|
"sass": "^1.77.8",
|
|
75
|
+
"start-server-and-test": "^2.1.2",
|
|
75
76
|
"vite": "^6.3.5",
|
|
76
77
|
"vue": "^3.5.12"
|
|
77
78
|
},
|
|
78
79
|
"resolutions": {
|
|
80
|
+
"js-yaml": ">=4.1.1",
|
|
79
81
|
"ws": "^8.18.3",
|
|
80
82
|
"braces": "^3.0.3",
|
|
81
83
|
"brace-expansion": "^1.1.12",
|
|
82
84
|
"axios": "^1.12.0",
|
|
83
85
|
"cross-spawn": "^7.0.5",
|
|
84
86
|
"tar-fs": ">=3.1.1",
|
|
85
|
-
"tmp": "^0.2.4"
|
|
87
|
+
"tmp": "^0.2.4",
|
|
88
|
+
"glob": ">=11.1.0"
|
|
86
89
|
}
|
|
87
90
|
}
|