@node-cli/bundlesize 4.0.0 → 4.0.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/package.json +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node-cli/bundlesize",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"description": "Simple CLI tool that checks file(s) size and report if limits have been reached",
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
],
|
|
14
14
|
"node": ">=18",
|
|
15
15
|
"scripts": {
|
|
16
|
-
"build": "
|
|
16
|
+
"build": "npm-run-all --serial clean build:types build:js build:barrel",
|
|
17
17
|
"build:barrel": "barrelsby --delete --directory dist --pattern \"**/*.d.ts\" --name \"index.d\"",
|
|
18
|
-
"build:js": "swc --source-maps --out-dir dist src",
|
|
18
|
+
"build:js": "swc --strip-leading-paths --source-maps --out-dir dist src",
|
|
19
19
|
"build:types": "tsc",
|
|
20
20
|
"clean": "rimraf dist types coverage",
|
|
21
21
|
"lint": "prettier --write \"src/*.ts\" && eslint --fix \"src/*.ts\"",
|
|
@@ -24,18 +24,18 @@
|
|
|
24
24
|
"test": "cross-env-shell NODE_OPTIONS=--experimental-vm-modules jest",
|
|
25
25
|
"test:coverage": "npm run test -- --coverage",
|
|
26
26
|
"test:watch": "npm run test -- --watch",
|
|
27
|
-
"watch": "swc --watch --out-dir dist src"
|
|
27
|
+
"watch": "swc --strip-leading-paths --watch --out-dir dist src"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@node-cli/logger": "
|
|
31
|
-
"@node-cli/parser": "
|
|
30
|
+
"@node-cli/logger": "1.2.3",
|
|
31
|
+
"@node-cli/parser": "2.3.2",
|
|
32
32
|
"bytes": "3.1.2",
|
|
33
33
|
"fs-extra": "11.2.0",
|
|
34
34
|
"glob": "10.3.10",
|
|
35
|
-
"semver": "7.
|
|
35
|
+
"semver": "7.6.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "4205e6c82a1dee6f83f5b9f45d0ea878490287eb"
|
|
41
41
|
}
|