@elliemae/pui-cli 8.15.1 → 8.16.0
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/cjs/commands/start.js +1 -1
- package/dist/esm/commands/start.js +1 -1
- package/package.json +19 -18
|
@@ -39,7 +39,7 @@ const import_meta = {};
|
|
|
39
39
|
const __dirname = import_node_path.default.dirname((0, import_node_url.fileURLToPath)(import_meta.url));
|
|
40
40
|
const startProdServer = async () => {
|
|
41
41
|
await (0, import_utils.exec)(
|
|
42
|
-
`cross-env NODE_ENV=production
|
|
42
|
+
`cross-env NODE_ENV=production tsx ${import_node_path.default.resolve(
|
|
43
43
|
__dirname,
|
|
44
44
|
"../server/index.js"
|
|
45
45
|
)} --color always`
|
|
@@ -5,7 +5,7 @@ import { exec, logError, logSuccess, isApp } from "./utils.js";
|
|
|
5
5
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
6
6
|
const startProdServer = async () => {
|
|
7
7
|
await exec(
|
|
8
|
-
`cross-env NODE_ENV=production
|
|
8
|
+
`cross-env NODE_ENV=production tsx ${path.resolve(
|
|
9
9
|
__dirname,
|
|
10
10
|
"../server/index.js"
|
|
11
11
|
)} --color always`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.16.0",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -49,21 +49,21 @@
|
|
|
49
49
|
"author": "ICE MT",
|
|
50
50
|
"license": "MIT",
|
|
51
51
|
"scripts": {
|
|
52
|
-
"build": "
|
|
53
|
-
"build:dev": "
|
|
52
|
+
"build": "tsx ./lib/cli.ts pack -p -t node",
|
|
53
|
+
"build:dev": "tsx ./lib/cli.ts pack -t node",
|
|
54
54
|
"docs:start": "docusaurus start",
|
|
55
55
|
"docs:build": "docusaurus build --out-dir build/docs",
|
|
56
56
|
"docs:version": "docusaurus docs:version",
|
|
57
57
|
"docs:serve": "docusaurus serve",
|
|
58
|
-
"lint": "
|
|
59
|
-
"lint:fix": "
|
|
58
|
+
"lint": "tsx ./lib/cli.ts lint",
|
|
59
|
+
"lint:fix": "tsx ./lib/cli.ts lint --fix",
|
|
60
60
|
"prettify": "prettier --write",
|
|
61
61
|
"release": "semantic-release",
|
|
62
62
|
"storybook:build": "exit 0",
|
|
63
63
|
"storybook:docs:build": "exit 0",
|
|
64
|
-
"test": "
|
|
64
|
+
"test": "tsx ./lib/cli.ts test -p",
|
|
65
65
|
"test:staged": "jest --coverage --passWithNoTests --bail --findRelatedTests",
|
|
66
|
-
"tscheck": "
|
|
66
|
+
"tscheck": "tsx ./lib/cli.ts tscheck --files",
|
|
67
67
|
"setup": "rimraf node_modules && rimraf pnpm-lock.yaml && pnpm i",
|
|
68
68
|
"upgrade": "ncu -u && npm run setup",
|
|
69
69
|
"prepare": "[ -n \"$CI\" ] || husky install"
|
|
@@ -96,10 +96,10 @@
|
|
|
96
96
|
"@commitlint/cli": "~17.7.1",
|
|
97
97
|
"@commitlint/config-conventional": "~17.7.0",
|
|
98
98
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.8.0",
|
|
99
|
-
"@faker-js/faker": "7.6.0",
|
|
100
|
-
"@nrwl/cli": "15.9.4",
|
|
101
|
-
"@nrwl/tao": "
|
|
102
|
-
"@nrwl/workspace": "
|
|
99
|
+
"@faker-js/faker": "~7.6.0",
|
|
100
|
+
"@nrwl/cli": "~15.9.4",
|
|
101
|
+
"@nrwl/tao": "~15.9.4",
|
|
102
|
+
"@nrwl/workspace": "~15.9.4",
|
|
103
103
|
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.11",
|
|
104
104
|
"@semantic-release/changelog": "~6.0.3",
|
|
105
105
|
"@semantic-release/exec": "~6.0.3",
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"@types/jest": "~29.5.3",
|
|
133
133
|
"@types/jest-axe": "~3.5.5",
|
|
134
134
|
"@types/moment-locales-webpack-plugin": "~1.2.3",
|
|
135
|
-
"@types/node": "~18.17.
|
|
135
|
+
"@types/node": "~18.17.6",
|
|
136
136
|
"@types/normalize-path": "~3.0.0",
|
|
137
137
|
"@types/postcss-preset-env": "~7.7.0",
|
|
138
138
|
"@types/rimraf": "~3.0.2",
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
"cross-env": "~7.0.3",
|
|
170
170
|
"css-loader": "~6.8.1",
|
|
171
171
|
"css-minimizer-webpack-plugin": "~5.0.1",
|
|
172
|
-
"depcheck": "~1.4.
|
|
172
|
+
"depcheck": "~1.4.5",
|
|
173
173
|
"docdash": "~2.0.1",
|
|
174
174
|
"dotenv": "~16.3.1",
|
|
175
175
|
"dotenv-webpack": "~8.0.1",
|
|
@@ -186,10 +186,10 @@
|
|
|
186
186
|
"eslint-config-react-app": "~7.0.1",
|
|
187
187
|
"eslint-import-resolver-babel-module": "~5.3.2",
|
|
188
188
|
"eslint-import-resolver-typescript": "~3.6.0",
|
|
189
|
-
"eslint-import-resolver-webpack": "~0.13.
|
|
189
|
+
"eslint-import-resolver-webpack": "~0.13.7",
|
|
190
190
|
"eslint-plugin-compat": "~4.1.4",
|
|
191
191
|
"eslint-plugin-eslint-comments": "~3.2.0",
|
|
192
|
-
"eslint-plugin-import": "~2.28.
|
|
192
|
+
"eslint-plugin-import": "~2.28.1",
|
|
193
193
|
"eslint-plugin-jest": "~27.2.3",
|
|
194
194
|
"eslint-plugin-jsdoc": "~43.2.0",
|
|
195
195
|
"eslint-plugin-jsx-a11y": "~6.7.1",
|
|
@@ -219,8 +219,8 @@
|
|
|
219
219
|
"imports-loader": "~4.0.1",
|
|
220
220
|
"ip": "~1.1.8",
|
|
221
221
|
"jest-axe": "~7.0.1",
|
|
222
|
-
"jest-cli": "~29.6.
|
|
223
|
-
"jest-environment-jsdom": "~29.6.
|
|
222
|
+
"jest-cli": "~29.6.3",
|
|
223
|
+
"jest-environment-jsdom": "~29.6.3",
|
|
224
224
|
"jest-sonar-reporter": "~2.0.0",
|
|
225
225
|
"jest-styled-components": "~7.1.1",
|
|
226
226
|
"jest-watch-typeahead": "~2.2.2",
|
|
@@ -261,7 +261,7 @@
|
|
|
261
261
|
"resize-observer-polyfill": "~1.5.1",
|
|
262
262
|
"resolve-typescript-plugin": "~2.0.1",
|
|
263
263
|
"rimraf": "~5.0.1",
|
|
264
|
-
"semantic-release": "~21.0.
|
|
264
|
+
"semantic-release": "~21.0.9",
|
|
265
265
|
"slackify-markdown": "~4.4.0",
|
|
266
266
|
"speed-measure-webpack-plugin": "~1.5.0",
|
|
267
267
|
"storybook-addon-turbo-build": "~1.1.0",
|
|
@@ -274,6 +274,7 @@
|
|
|
274
274
|
"swc-loader": "~0.2.3",
|
|
275
275
|
"ts-node": "~10.9.1",
|
|
276
276
|
"tsc-alias": "~1.8.7",
|
|
277
|
+
"tsx": "~3.12.7",
|
|
277
278
|
"typedoc": "~0.24.8",
|
|
278
279
|
"typescript": "~5.1.6",
|
|
279
280
|
"update-notifier": "~6.0.2",
|