jizy-packer 2.1.8 → 2.1.9
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/README.md +14 -14
- package/package.json +1 -15
package/README.md
CHANGED
|
@@ -10,6 +10,20 @@ A CLI tool and Node.js library to generate optimized builds for your projects. I
|
|
|
10
10
|
- Utilities for cleaning build folders and managing configs
|
|
11
11
|
- Rollup-based build process with plugin support
|
|
12
12
|
|
|
13
|
+
## Create a jPacker
|
|
14
|
+
|
|
15
|
+
Examples in all jizy packages
|
|
16
|
+
@jizy-browser
|
|
17
|
+
@jizy-cooky
|
|
18
|
+
etc.
|
|
19
|
+
|
|
20
|
+
Look into these packages for the file architecture.
|
|
21
|
+
|
|
22
|
+
./cli/jpack.js
|
|
23
|
+
./config/jpack.js
|
|
24
|
+
./config/jpack.template
|
|
25
|
+
./config/jpack.wrapper.js
|
|
26
|
+
|
|
13
27
|
## Quick Usage
|
|
14
28
|
|
|
15
29
|
### CLI
|
|
@@ -38,17 +52,3 @@ await jPackBuild({
|
|
|
38
52
|
debug: true
|
|
39
53
|
});
|
|
40
54
|
```
|
|
41
|
-
|
|
42
|
-
### Create a jPacker
|
|
43
|
-
|
|
44
|
-
Examples in all jizy packages
|
|
45
|
-
@jizy-browser
|
|
46
|
-
@jizy-cooky
|
|
47
|
-
etc.
|
|
48
|
-
|
|
49
|
-
Look into these packages for the file architecture.
|
|
50
|
-
|
|
51
|
-
./cli/jpack.js
|
|
52
|
-
./config/jpack.js
|
|
53
|
-
./config/jpack.template
|
|
54
|
-
./config/jpack.wrapper.js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jizy-packer",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"lib/*.js"
|
|
@@ -19,27 +19,13 @@
|
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"description": "CLI app to generate optimized builds.",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@babel/core": "^7.26.10",
|
|
23
|
-
"@babel/preset-env": "^7.26.9",
|
|
24
22
|
"@rollup/plugin-commonjs": "^28.0.3",
|
|
25
23
|
"@rollup/plugin-json": "^6.1.0",
|
|
26
24
|
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
27
25
|
"@rollup/plugin-terser": "^0.4.4",
|
|
28
26
|
"@rollup/plugin-url": "^8.0.2",
|
|
29
|
-
"autoprefixer": "^10.4.21",
|
|
30
|
-
"babel-jest": "^29.7.0",
|
|
31
|
-
"clean-css": "^5.3.3",
|
|
32
|
-
"cross-env": "^7.0.3",
|
|
33
|
-
"cssnano": "^7.0.6",
|
|
34
|
-
"jest": "^29.7.0",
|
|
35
|
-
"jest-environment-jsdom": "^29.7.0",
|
|
36
|
-
"jsdom": "^26.1.0",
|
|
37
|
-
"less": "^4.3.0",
|
|
38
|
-
"less-plugin-clean-css": "^1.6.0",
|
|
39
27
|
"postcss": "^8.5.3",
|
|
40
28
|
"rollup": "^4.40.1",
|
|
41
|
-
"rollup-plugin-copy": "^3.5.0",
|
|
42
|
-
"rollup-plugin-delete": "^3.0.1",
|
|
43
29
|
"rollup-plugin-postcss": "^4.0.2",
|
|
44
30
|
"yargs": "^17.7.2"
|
|
45
31
|
}
|