@elliemae/pui-cli 8.54.12 → 8.55.5
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 +3 -3
- package/dist/cjs/cli.js +0 -0
- package/dist/cjs/package.json +4 -1
- package/dist/cjs/release.config.cjs +1 -0
- package/dist/cjs/semantic-release-plugin.cjs +35 -0
- package/dist/esm/package.json +4 -1
- package/dist/esm/release.config.cjs +1 -0
- package/dist/esm/semantic-release-plugin.cjs +35 -0
- package/dist/types/lib/semantic-release-plugin.d.cts +1 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +24 -30
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.55.5",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/cjs/index.cjs",
|
|
@@ -43,30 +43,10 @@
|
|
|
43
43
|
"node": ">=20"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
|
-
"access": "
|
|
46
|
+
"access": "public"
|
|
47
47
|
},
|
|
48
48
|
"author": "ICE MT",
|
|
49
49
|
"license": "MIT",
|
|
50
|
-
"scripts": {
|
|
51
|
-
"build": "tsx ./lib/cli.ts pack -p -t node",
|
|
52
|
-
"build:dev": "tsx ./lib/cli.ts pack -t node",
|
|
53
|
-
"docs:start": "pui-doc-gen start",
|
|
54
|
-
"docs:build": "pui-doc-gen build",
|
|
55
|
-
"docs:version": "pui-doc-gen version",
|
|
56
|
-
"docs:serve": "pui-doc-gen serve",
|
|
57
|
-
"lint": "tsx ./lib/cli.ts lint",
|
|
58
|
-
"lint:fix": "tsx ./lib/cli.ts lint --fix",
|
|
59
|
-
"prettify": "prettier --write",
|
|
60
|
-
"release": "semantic-release",
|
|
61
|
-
"storybook:build": "exit 0",
|
|
62
|
-
"storybook:docs:build": "exit 0",
|
|
63
|
-
"test": "tsx ./lib/cli.ts test -p",
|
|
64
|
-
"test:staged": "jest --coverage --passWithNoTests --bail --findRelatedTests",
|
|
65
|
-
"tscheck": "tsx ./lib/cli.ts tscheck --files",
|
|
66
|
-
"setup": "rimraf node_modules && rimraf pnpm-lock.yaml && pnpm i",
|
|
67
|
-
"upgrade": "ncu -u && npm run setup",
|
|
68
|
-
"prepare": "[ -n \"$CI\" ] || husky install"
|
|
69
|
-
},
|
|
70
50
|
"jestSonar": {
|
|
71
51
|
"reportPath": "reports",
|
|
72
52
|
"reportFile": "tests.xml",
|
|
@@ -177,7 +157,7 @@
|
|
|
177
157
|
"dotenv-webpack": "~8.1.1",
|
|
178
158
|
"duplicate-package-checker-webpack-plugin": "~3.0.0",
|
|
179
159
|
"enhanced-resolve": "~5.18.3",
|
|
180
|
-
"esbuild": "~0.25.
|
|
160
|
+
"esbuild": "~0.25.12",
|
|
181
161
|
"esbuild-loader": "~3.2.0",
|
|
182
162
|
"esbuild-plugin-svgr": "~1.1.0",
|
|
183
163
|
"eslint": "~8.57.1",
|
|
@@ -306,10 +286,24 @@
|
|
|
306
286
|
"redux-saga": "~1.4.2",
|
|
307
287
|
"styled-components": "~5.3.11"
|
|
308
288
|
},
|
|
309
|
-
"
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
289
|
+
"type": "module",
|
|
290
|
+
"scripts": {
|
|
291
|
+
"build": "tsx ./lib/cli.ts pack -p -t node",
|
|
292
|
+
"build:dev": "tsx ./lib/cli.ts pack -t node",
|
|
293
|
+
"docs:start": "pui-doc-gen start",
|
|
294
|
+
"docs:build": "pui-doc-gen build",
|
|
295
|
+
"docs:version": "pui-doc-gen version",
|
|
296
|
+
"docs:serve": "pui-doc-gen serve",
|
|
297
|
+
"lint": "tsx ./lib/cli.ts lint",
|
|
298
|
+
"lint:fix": "tsx ./lib/cli.ts lint --fix",
|
|
299
|
+
"prettify": "prettier --write",
|
|
300
|
+
"release": "semantic-release",
|
|
301
|
+
"storybook:build": "exit 0",
|
|
302
|
+
"storybook:docs:build": "exit 0",
|
|
303
|
+
"test": "tsx ./lib/cli.ts test -p",
|
|
304
|
+
"test:staged": "jest --coverage --passWithNoTests --bail --findRelatedTests",
|
|
305
|
+
"tscheck": "tsx ./lib/cli.ts tscheck --files",
|
|
306
|
+
"setup": "rimraf node_modules && rimraf pnpm-lock.yaml && pnpm i",
|
|
307
|
+
"upgrade": "ncu -u && npm run setup"
|
|
308
|
+
}
|
|
309
|
+
}
|