@variousjs/various 5.0.0 → 5.0.1
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/index.dev.js +1 -1
- package/dist/index.js +1 -1
- package/dist/loader-dev.js +2319 -0
- package/dist/loader-dev.js.map +1 -0
- package/dist/loader.js +1 -1
- package/dist/loader.js.map +1 -1
- package/package.json +13 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@variousjs/various",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "RequireJS(AMD) + React",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -19,11 +19,19 @@
|
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"scripts": {
|
|
21
21
|
"lint": "tsc --noemit && eslint . --ext .ts,.tsx,.js",
|
|
22
|
-
"
|
|
23
|
-
"
|
|
22
|
+
"create-empty": "touch docs/dist/empty.js",
|
|
23
|
+
"test-components": "webpack --config webpack/test-components.js --progress",
|
|
24
|
+
"test-components:build": "NODE_ENV=production webpack --config webpack/test-components.js --progress",
|
|
25
|
+
"package-core": "webpack --config webpack/package-core.js --progress",
|
|
26
|
+
"package-core:build": "NODE_ENV=production webpack --config webpack/package-core.js --progress",
|
|
27
|
+
"package-loader": "webpack serve --config webpack/package-loader.js --progress --no-client-overlay",
|
|
28
|
+
"package-loader:build": "NODE_ENV=production webpack --config webpack/package-loader.js --progress",
|
|
29
|
+
"prestart": "mkdir -p docs/dist && npm run create-empty",
|
|
30
|
+
"start": "npm run test-components & npm run package-core & npm run package-loader",
|
|
31
|
+
"build": "npm run test-components:build && npm run package-core:build && npm run package-loader:build",
|
|
24
32
|
"prebuild": "npm run lint && rm -rf dist && rm -rf docs/dist",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
33
|
+
"postbuild": "npm run create-empty",
|
|
34
|
+
"prepublishOnly": "npm run build",
|
|
27
35
|
"cy:run": "rm -rf .nyc_output && cypress run",
|
|
28
36
|
"ci": "start-server-and-test start http://127.0.0.1:2333 cy:run",
|
|
29
37
|
"cypress": "cypress open"
|
|
@@ -74,7 +82,6 @@
|
|
|
74
82
|
"vue": "^3.5.21",
|
|
75
83
|
"vue-loader": "^17.3.1",
|
|
76
84
|
"webpack": "^5.101.0",
|
|
77
|
-
"webpack-bundle-analyzer": "^4.6.1",
|
|
78
85
|
"webpack-cli": "^4.10.0",
|
|
79
86
|
"webpack-dev-server": "^4.9.3"
|
|
80
87
|
},
|