@elliemae/pui-cli 6.17.0 → 6.19.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/lib/cli-commands/test.js +2 -3
- package/package.json +31 -30
package/lib/cli-commands/test.js
CHANGED
|
@@ -9,11 +9,10 @@ async function test(commandOptions) {
|
|
|
9
9
|
|
|
10
10
|
// eslint-disable-next-line max-statements
|
|
11
11
|
async function handler(argv) {
|
|
12
|
-
let commandOptions = '--coverage';
|
|
12
|
+
let commandOptions = '--coverage --maxWorkers=50%';
|
|
13
13
|
if (argv.fix) commandOptions = '-u';
|
|
14
14
|
else if (argv.watch) commandOptions = '--watchAll';
|
|
15
|
-
if (CI) commandOptions += ' --ci --
|
|
16
|
-
else commandOptions += ' --maxWorkers=50%';
|
|
15
|
+
if (CI) commandOptions += ' --ci --no-colors';
|
|
17
16
|
if (argv.p) commandOptions += ' --passWithNoTests';
|
|
18
17
|
if (argv.r) commandOptions += ' --bail --findRelatedTests';
|
|
19
18
|
if (argv.s) commandOptions += ' --silent';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.19.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "ICE MT UI Platform CLI",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -48,20 +48,20 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@babel/cli": "~7.17.10",
|
|
51
|
-
"@babel/core": "~7.17.
|
|
51
|
+
"@babel/core": "~7.17.12",
|
|
52
52
|
"@babel/eslint-parser": "~7.17.0",
|
|
53
53
|
"@babel/node": "~7.17.10",
|
|
54
|
-
"@babel/plugin-proposal-class-properties": "~7.
|
|
55
|
-
"@babel/plugin-proposal-export-default-from": "~7.
|
|
54
|
+
"@babel/plugin-proposal-class-properties": "~7.17.12",
|
|
55
|
+
"@babel/plugin-proposal-export-default-from": "~7.17.12",
|
|
56
56
|
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
|
|
57
|
-
"@babel/plugin-transform-modules-commonjs": "~7.17.
|
|
58
|
-
"@babel/plugin-transform-react-constant-elements": "~7.17.
|
|
57
|
+
"@babel/plugin-transform-modules-commonjs": "~7.17.12",
|
|
58
|
+
"@babel/plugin-transform-react-constant-elements": "~7.17.12",
|
|
59
59
|
"@babel/plugin-transform-react-inline-elements": "~7.16.7",
|
|
60
60
|
"@babel/plugin-transform-react-jsx-source": "~7.16.7",
|
|
61
|
-
"@babel/plugin-transform-runtime": "~7.17.
|
|
62
|
-
"@babel/preset-env": "~7.17.
|
|
63
|
-
"@babel/preset-react": "~7.
|
|
64
|
-
"@babel/preset-typescript": "~7.
|
|
61
|
+
"@babel/plugin-transform-runtime": "~7.17.12",
|
|
62
|
+
"@babel/preset-env": "~7.17.12",
|
|
63
|
+
"@babel/preset-react": "~7.17.12",
|
|
64
|
+
"@babel/preset-typescript": "~7.17.12",
|
|
65
65
|
"@babel/runtime": "~7.17.9",
|
|
66
66
|
"@commitlint/cli": "~16.2.4",
|
|
67
67
|
"@commitlint/config-conventional": "~16.2.4",
|
|
@@ -88,19 +88,20 @@
|
|
|
88
88
|
"@stylelint/postcss-css-in-js": "~0.38.0",
|
|
89
89
|
"@svgr/webpack": "~6.2.1",
|
|
90
90
|
"@swc/cli": "~0.1.57",
|
|
91
|
-
"@swc/core": "~1.2.
|
|
92
|
-
"@swc/jest": "~0.2.
|
|
91
|
+
"@swc/core": "~1.2.185",
|
|
92
|
+
"@swc/jest": "~0.2.21",
|
|
93
93
|
"@testing-library/jest-dom": "~5.16.4",
|
|
94
94
|
"@testing-library/react": "~12.1.4",
|
|
95
95
|
"@testing-library/react-hooks": "~8.0.0",
|
|
96
|
-
"@types/jest": "~27.5.
|
|
97
|
-
"@types/node": "~17.0.
|
|
96
|
+
"@types/jest": "~27.5.1",
|
|
97
|
+
"@types/node": "~17.0.34",
|
|
98
|
+
"@types/react": "~17.0.44",
|
|
98
99
|
"@types/rimraf": "~3.0.2",
|
|
99
100
|
"@types/testing-library__jest-dom": "~5.14.3",
|
|
100
|
-
"@typescript-eslint/eslint-plugin": "~5.
|
|
101
|
-
"@typescript-eslint/parser": "~5.
|
|
101
|
+
"@typescript-eslint/eslint-plugin": "~5.24.0",
|
|
102
|
+
"@typescript-eslint/parser": "~5.24.0",
|
|
102
103
|
"autoprefixer": "~10.4.7",
|
|
103
|
-
"axe-core": "~4.4.
|
|
104
|
+
"axe-core": "~4.4.2",
|
|
104
105
|
"babel-loader": "~8.2.5",
|
|
105
106
|
"babel-plugin-add-import-extension": "1.5.1",
|
|
106
107
|
"babel-plugin-date-fns": "~2.0.0",
|
|
@@ -128,14 +129,14 @@
|
|
|
128
129
|
"css-minimizer-webpack-plugin": "~3.4.1",
|
|
129
130
|
"depcheck": "~1.4.3",
|
|
130
131
|
"docdash": "~1.2.0",
|
|
131
|
-
"dotenv": "~16.0.
|
|
132
|
+
"dotenv": "~16.0.1",
|
|
132
133
|
"dotenv-webpack": "~7.1.0",
|
|
133
134
|
"duplicate-package-checker-webpack-plugin": "~3.0.0",
|
|
134
135
|
"enhanced-resolve": "5.9.3",
|
|
135
|
-
"esbuild": "~0.14.
|
|
136
|
-
"esbuild-loader": "~2.
|
|
136
|
+
"esbuild": "~0.14.39",
|
|
137
|
+
"esbuild-loader": "~2.19.0",
|
|
137
138
|
"esbuild-plugin-svgr": "~1.0.1",
|
|
138
|
-
"eslint": "~8.
|
|
139
|
+
"eslint": "~8.15.0",
|
|
139
140
|
"eslint-config-airbnb": "~19.0.4",
|
|
140
141
|
"eslint-config-airbnb-base": "~15.0.0",
|
|
141
142
|
"eslint-config-airbnb-typescript": "~17.0.0",
|
|
@@ -147,7 +148,7 @@
|
|
|
147
148
|
"eslint-plugin-compat": "~4.0.2",
|
|
148
149
|
"eslint-plugin-eslint-comments": "~3.2.0",
|
|
149
150
|
"eslint-plugin-import": "~2.26.0",
|
|
150
|
-
"eslint-plugin-jest": "~26.
|
|
151
|
+
"eslint-plugin-jest": "~26.2.2",
|
|
151
152
|
"eslint-plugin-jsdoc": "~39.2.9",
|
|
152
153
|
"eslint-plugin-jsx-a11y": "~6.5.1",
|
|
153
154
|
"eslint-plugin-mdx": "~1.17.0",
|
|
@@ -156,7 +157,7 @@
|
|
|
156
157
|
"eslint-plugin-react-hooks": "~4.5.0",
|
|
157
158
|
"eslint-plugin-redux-saga": "~1.3.2",
|
|
158
159
|
"eslint-plugin-storybook": "~0.5.11",
|
|
159
|
-
"eslint-plugin-testing-library": "~5.
|
|
160
|
+
"eslint-plugin-testing-library": "~5.5.0",
|
|
160
161
|
"eslint-plugin-wdio": "~7.19.4",
|
|
161
162
|
"execa": "~5.1.1",
|
|
162
163
|
"express": "~4.18.1",
|
|
@@ -173,7 +174,7 @@
|
|
|
173
174
|
"husky": "~7.0.4",
|
|
174
175
|
"husky-init": "~7.1.0",
|
|
175
176
|
"imports-loader": "~3.1.1",
|
|
176
|
-
"ip": "~1.1.
|
|
177
|
+
"ip": "~1.1.8",
|
|
177
178
|
"jest-axe": "~6.0.0",
|
|
178
179
|
"jest-cli": "~27.5.1",
|
|
179
180
|
"jest-sonar-reporter": "~2.0.0",
|
|
@@ -191,7 +192,7 @@
|
|
|
191
192
|
"node-plop": "~0.31.0",
|
|
192
193
|
"nodemon": "~2.0.16",
|
|
193
194
|
"normalize-path": "~3.0.0",
|
|
194
|
-
"npm-check-updates": "
|
|
195
|
+
"npm-check-updates": "13.0.0",
|
|
195
196
|
"null-loader": "~4.0.1",
|
|
196
197
|
"pino": "~7.11.0",
|
|
197
198
|
"pino-pretty": "~7.6.1",
|
|
@@ -224,7 +225,7 @@
|
|
|
224
225
|
"stylelint": "~14.8.2",
|
|
225
226
|
"stylelint-config-recommended": "~7.0.0",
|
|
226
227
|
"stylelint-config-styled-components": "~0.1.1",
|
|
227
|
-
"swc-loader": "~0.2.
|
|
228
|
+
"swc-loader": "~0.2.1",
|
|
228
229
|
"terser-webpack-plugin": "~5.3.1",
|
|
229
230
|
"ts-node": "~10.7.0",
|
|
230
231
|
"tsc-alias": "~1.6.7",
|
|
@@ -232,9 +233,9 @@
|
|
|
232
233
|
"update-notifier": "~5.1.0",
|
|
233
234
|
"url-loader": "~4.1.1",
|
|
234
235
|
"uuid": "~8.3.2",
|
|
235
|
-
"vite": "~2.9.
|
|
236
|
-
"vitest": "~0.
|
|
237
|
-
"webpack": "~5.72.
|
|
236
|
+
"vite": "~2.9.9",
|
|
237
|
+
"vitest": "~0.12.6",
|
|
238
|
+
"webpack": "~5.72.1",
|
|
238
239
|
"webpack-bundle-analyzer": "~4.5.0",
|
|
239
240
|
"webpack-cli": "~4.9.2",
|
|
240
241
|
"webpack-dev-middleware": "~5.3.1",
|
|
@@ -243,7 +244,7 @@
|
|
|
243
244
|
"webpack-merge": "~5.8.0",
|
|
244
245
|
"whatwg-fetch": "~3.6.2",
|
|
245
246
|
"workbox-webpack-plugin": "~6.5.3",
|
|
246
|
-
"yargs": "~17.
|
|
247
|
+
"yargs": "~17.5.1"
|
|
247
248
|
},
|
|
248
249
|
"devDependencies": {
|
|
249
250
|
"react": "~17.0.2",
|