jssm 5.42.0 → 5.43.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/dist/es6/version.js +1 -1
- package/dist/jssm.es5.cjs.js +1 -1
- package/dist/jssm.es5.iife.js +1 -1
- package/package.json +3 -5
- package/src/ts/version.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jssm",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.43.2",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=10.0.0"
|
|
6
6
|
},
|
|
@@ -39,9 +39,8 @@
|
|
|
39
39
|
"eslint": "eslint --color src/ts/jssm.ts src/ts/jssm_types.ts src/ts/tests/*.ts",
|
|
40
40
|
"audit": "text_audit -r -t major MAJOR wasteful WASTEFUL any mixed fixme FIXME checkme CHECKME testme TESTME stochable STOCHABLE todo TODO comeback COMEBACK whargarbl WHARGARBL -g ./src/ts/**/*.{js,ts}",
|
|
41
41
|
"vet": "npm run eslint && npm run audit",
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"ci_build": "npm run vet && npm run test && npm run benny",
|
|
42
|
+
"build": "npm run vet && npm run test && npm run site && npm run docs",
|
|
43
|
+
"ci_build": "npm run vet && npm run test",
|
|
45
44
|
"minify": "mv dist/es6/jssm-dot.js dist/es6/jssm-dot.nonmin.js && terser dist/es6/jssm-dot.nonmin.js > dist/es6/jssm-dot.js",
|
|
46
45
|
"min_iife": "mv dist/jssm.es5.iife.js dist/jssm.es5.iife.nonmin.js && terser dist/jssm.es5.iife.nonmin.js > dist/jssm.es5.iife.js",
|
|
47
46
|
"min_cjs": "mv dist/jssm.es5.cjs.js dist/jssm.es5.cjs.nonmin.js && terser dist/jssm.es5.cjs.nonmin.js > dist/jssm.es5.cjs.js",
|
|
@@ -93,7 +92,6 @@
|
|
|
93
92
|
"@types/jest": "^27.0.2",
|
|
94
93
|
"@typescript-eslint/eslint-plugin": "^4.13.0",
|
|
95
94
|
"@typescript-eslint/parser": "^4.13.0",
|
|
96
|
-
"benny": "^3.7.1",
|
|
97
95
|
"changelog-maker": "^2.3.2",
|
|
98
96
|
"coveralls": "^3.0.11",
|
|
99
97
|
"eslint": "^7.32.0",
|
package/src/ts/version.ts
CHANGED