jedison 1.20.2 → 1.21.0
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 +6 -0
- package/dist/cjs/jedison.cjs +1 -1
- package/dist/cjs/jedison.cjs.map +1 -1
- package/dist/esm/jedison.js +40 -3
- 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 +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jedison",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.0",
|
|
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",
|
|
@@ -40,7 +40,9 @@
|
|
|
40
40
|
"lint:fix": "eslint --fix -c ./.eslintrc.json ./src ./tests",
|
|
41
41
|
"test:full": "yarn e2e:clean && yarn e2e && yarn unit",
|
|
42
42
|
"test:grep": "yarn e2e:clean && start-server-and-test serve http://localhost:8181 'codeceptjs run-workers 10 -c tests/e2e/codecept.conf.cjs --grep \"${GREP}\"'",
|
|
43
|
+
"version": "vite build --config ./vite.config.prod.js && git add dist",
|
|
43
44
|
"postversion": "git push && git push --tags",
|
|
45
|
+
"prepublishOnly": "vite build --config ./vite.config.prod.js",
|
|
44
46
|
"release": "npm publish --access public"
|
|
45
47
|
},
|
|
46
48
|
"repository": {
|