@elliemae/pui-cli 8.31.0 → 8.33.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/lint.js +2 -2
- package/dist/esm/commands/lint.js +2 -2
- package/package.json +26 -27
|
@@ -49,14 +49,14 @@ const lintCSS = async (args) => {
|
|
|
49
49
|
`stylelint ./{lib,app}/**/*.{js,jsx,ts,tsx} ${fixIssues} ${!(0, import_utils.getCIEnv)() ? "--color" : "--no-color"} --allow-empty-input --config ${import_node_path.default.join(
|
|
50
50
|
process.cwd(),
|
|
51
51
|
"stylelint.config.cjs"
|
|
52
|
-
)}`
|
|
52
|
+
)} -o ./reports/stylelint.json`
|
|
53
53
|
);
|
|
54
54
|
};
|
|
55
55
|
const lintJS = async (args) => {
|
|
56
56
|
const fixIssues = args.fix ? "--fix" : "";
|
|
57
57
|
const debugFlags = args.debug ? "--env-info --debug" : "";
|
|
58
58
|
await (0, import_utils.exec)(
|
|
59
|
-
`eslint ${!(0, import_utils.getCIEnv)() ? "--color" : "--no-color"} ${fixIssues} ${debugFlags} .`
|
|
59
|
+
`eslint -o ./reports/eslint.json ${!(0, import_utils.getCIEnv)() ? "--color" : "--no-color"} ${fixIssues} ${debugFlags} .`
|
|
60
60
|
);
|
|
61
61
|
};
|
|
62
62
|
const cmdArgs = {
|
|
@@ -23,14 +23,14 @@ const lintCSS = async (args) => {
|
|
|
23
23
|
`stylelint ./{lib,app}/**/*.{js,jsx,ts,tsx} ${fixIssues} ${!getCIEnv() ? "--color" : "--no-color"} --allow-empty-input --config ${path.join(
|
|
24
24
|
process.cwd(),
|
|
25
25
|
"stylelint.config.cjs"
|
|
26
|
-
)}`
|
|
26
|
+
)} -o ./reports/stylelint.json`
|
|
27
27
|
);
|
|
28
28
|
};
|
|
29
29
|
const lintJS = async (args) => {
|
|
30
30
|
const fixIssues = args.fix ? "--fix" : "";
|
|
31
31
|
const debugFlags = args.debug ? "--env-info --debug" : "";
|
|
32
32
|
await exec(
|
|
33
|
-
`eslint ${!getCIEnv() ? "--color" : "--no-color"} ${fixIssues} ${debugFlags} .`
|
|
33
|
+
`eslint -o ./reports/eslint.json ${!getCIEnv() ? "--color" : "--no-color"} ${fixIssues} ${debugFlags} .`
|
|
34
34
|
);
|
|
35
35
|
};
|
|
36
36
|
const cmdArgs = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.33.0",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "./dist/cjs/index.cjs",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
"engines": {
|
|
45
45
|
"pnpm": ">=8",
|
|
46
|
-
"node": ">=
|
|
46
|
+
"node": ">=20"
|
|
47
47
|
},
|
|
48
48
|
"author": "ICE MT",
|
|
49
49
|
"license": "MIT",
|
|
@@ -70,13 +70,12 @@
|
|
|
70
70
|
"jestSonar": {
|
|
71
71
|
"reportPath": "reports",
|
|
72
72
|
"reportFile": "tests.xml",
|
|
73
|
-
"indent": 4
|
|
74
|
-
"sonar56x": true
|
|
73
|
+
"indent": 4
|
|
75
74
|
},
|
|
76
75
|
"dependencies": {
|
|
77
|
-
"@axe-core/react": "~4.
|
|
76
|
+
"@axe-core/react": "~4.9.0",
|
|
78
77
|
"@babel/cli": "~7.24.1",
|
|
79
|
-
"@babel/core": "~7.24.
|
|
78
|
+
"@babel/core": "~7.24.4",
|
|
80
79
|
"@babel/eslint-parser": "~7.24.1",
|
|
81
80
|
"@babel/node": "~7.23.9",
|
|
82
81
|
"@babel/plugin-proposal-class-properties": "~7.18.6",
|
|
@@ -88,10 +87,10 @@
|
|
|
88
87
|
"@babel/plugin-transform-react-inline-elements": "~7.24.1",
|
|
89
88
|
"@babel/plugin-transform-react-jsx-source": "~7.24.1",
|
|
90
89
|
"@babel/plugin-transform-runtime": "~7.24.3",
|
|
91
|
-
"@babel/preset-env": "~7.24.
|
|
90
|
+
"@babel/preset-env": "~7.24.4",
|
|
92
91
|
"@babel/preset-react": "~7.24.1",
|
|
93
92
|
"@babel/preset-typescript": "~7.24.1",
|
|
94
|
-
"@babel/runtime": "~7.24.
|
|
93
|
+
"@babel/runtime": "~7.24.4",
|
|
95
94
|
"@commitlint/cli": "~17.8.1",
|
|
96
95
|
"@commitlint/config-conventional": "~17.8.1",
|
|
97
96
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.9.0",
|
|
@@ -116,11 +115,11 @@
|
|
|
116
115
|
"@storybook/theming": "~6.5.16",
|
|
117
116
|
"@stylelint/postcss-css-in-js": "~0.38.0",
|
|
118
117
|
"@svgr/webpack": "~7.0.0",
|
|
119
|
-
"@swc/cli": "~0.3.
|
|
120
|
-
"@swc/core": "~1.
|
|
118
|
+
"@swc/cli": "~0.3.12",
|
|
119
|
+
"@swc/core": "~1.5.0",
|
|
121
120
|
"@swc/jest": "~0.2.36",
|
|
122
121
|
"@testing-library/jest-dom": "~5.17.0",
|
|
123
|
-
"@testing-library/react": "~14.
|
|
122
|
+
"@testing-library/react": "~14.3.1",
|
|
124
123
|
"@testing-library/react-hooks": "~8.0.1",
|
|
125
124
|
"@testing-library/user-event": "~14.5.2",
|
|
126
125
|
"@types/circular-dependency-plugin": "~5.0.8",
|
|
@@ -131,7 +130,7 @@
|
|
|
131
130
|
"@types/jest": "~29.5.12",
|
|
132
131
|
"@types/jest-axe": "~3.5.9",
|
|
133
132
|
"@types/moment-locales-webpack-plugin": "~1.2.6",
|
|
134
|
-
"@types/node": "~18.19.
|
|
133
|
+
"@types/node": "~18.19.31",
|
|
135
134
|
"@types/normalize-path": "~3.0.2",
|
|
136
135
|
"@types/postcss-preset-env": "~7.7.0",
|
|
137
136
|
"@types/rimraf": "~3.0.2",
|
|
@@ -145,13 +144,13 @@
|
|
|
145
144
|
"@vitejs/plugin-react": "~4.2.1",
|
|
146
145
|
"@vitest/coverage-c8": "~0.33.0",
|
|
147
146
|
"@vitest/coverage-v8": "~0.34.6",
|
|
148
|
-
"autoprefixer": "~10.4.
|
|
149
|
-
"axe-core": "~4.
|
|
147
|
+
"autoprefixer": "~10.4.19",
|
|
148
|
+
"axe-core": "~4.9.0",
|
|
150
149
|
"babel-plugin-date-fns": "~2.0.0",
|
|
151
150
|
"babel-plugin-dynamic-import-node": "~2.3.3",
|
|
152
151
|
"babel-plugin-import-remove-resource-query": "~1.0.0",
|
|
153
152
|
"babel-plugin-lodash": "~3.3.4",
|
|
154
|
-
"babel-plugin-module-resolver": "~5.0.
|
|
153
|
+
"babel-plugin-module-resolver": "~5.0.2",
|
|
155
154
|
"babel-plugin-source-map-support": "~2.2.0",
|
|
156
155
|
"babel-plugin-styled-components": "~2.1.4",
|
|
157
156
|
"babel-plugin-transform-react-remove-prop-types": "~0.4.24",
|
|
@@ -167,12 +166,12 @@
|
|
|
167
166
|
"copy-webpack-plugin": "~11.0.0",
|
|
168
167
|
"cors": "~2.8.5",
|
|
169
168
|
"cross-env": "~7.0.3",
|
|
170
|
-
"css-loader": "~6.
|
|
169
|
+
"css-loader": "~6.11.0",
|
|
171
170
|
"css-minimizer-webpack-plugin": "~5.0.1",
|
|
172
171
|
"depcheck": "~1.4.7",
|
|
173
172
|
"docdash": "~2.0.2",
|
|
174
173
|
"dotenv": "~16.4.5",
|
|
175
|
-
"dotenv-webpack": "~8.0
|
|
174
|
+
"dotenv-webpack": "~8.1.0",
|
|
176
175
|
"duplicate-package-checker-webpack-plugin": "~3.0.0",
|
|
177
176
|
"enhanced-resolve": "5.16.0",
|
|
178
177
|
"esbuild": "~0.20.2",
|
|
@@ -202,7 +201,7 @@
|
|
|
202
201
|
"eslint-plugin-testing-library": "~5.11.1",
|
|
203
202
|
"eslint-plugin-wdio": "~8.24.12",
|
|
204
203
|
"execa": "~7.2.0",
|
|
205
|
-
"express": "~4.19.
|
|
204
|
+
"express": "~4.19.2",
|
|
206
205
|
"express-static-gzip": "~2.1.7",
|
|
207
206
|
"fast-glob": "~3.3.2",
|
|
208
207
|
"favicons": "~7.2.0",
|
|
@@ -228,7 +227,7 @@
|
|
|
228
227
|
"jsdoc": "~4.0.2",
|
|
229
228
|
"lerna": "~6.6.2",
|
|
230
229
|
"lint-staged": "~13.3.0",
|
|
231
|
-
"mini-css-extract-plugin": "~2.
|
|
230
|
+
"mini-css-extract-plugin": "~2.9.0",
|
|
232
231
|
"minimist": "~1.2.8",
|
|
233
232
|
"moment": "~2.30.1",
|
|
234
233
|
"moment-locales-webpack-plugin": "~1.2.0",
|
|
@@ -237,13 +236,13 @@
|
|
|
237
236
|
"node-plop": "~0.32.0",
|
|
238
237
|
"nodemon": "~2.0.22",
|
|
239
238
|
"normalize-path": "~3.0.0",
|
|
240
|
-
"npm-check-updates": "16.14.
|
|
239
|
+
"npm-check-updates": "~16.14.18",
|
|
241
240
|
"npm-run-all": "~4.1.5",
|
|
242
|
-
"pino": "~8.
|
|
241
|
+
"pino": "~8.21.0",
|
|
243
242
|
"pino-http": "~8.6.1",
|
|
244
243
|
"pino-pretty": "~10.3.1",
|
|
245
244
|
"plop": "~3.1.2",
|
|
246
|
-
"postcss": "~8.4.
|
|
245
|
+
"postcss": "~8.4.38",
|
|
247
246
|
"postcss-html": "~1.6.0",
|
|
248
247
|
"postcss-jsx": "~0.36.4",
|
|
249
248
|
"postcss-loader": "~7.3.4",
|
|
@@ -276,16 +275,16 @@
|
|
|
276
275
|
"ts-node": "~10.9.2",
|
|
277
276
|
"tsc-alias": "~1.8.8",
|
|
278
277
|
"tsx": "~3.13.0",
|
|
279
|
-
"typedoc": "~0.25.
|
|
280
|
-
"typescript": "~5.4.
|
|
278
|
+
"typedoc": "~0.25.13",
|
|
279
|
+
"typescript": "~5.4.5",
|
|
281
280
|
"update-notifier": "~6.0.2",
|
|
282
281
|
"url-loader": "~4.1.1",
|
|
283
282
|
"uuid": "~9.0.1",
|
|
284
|
-
"vite": "~5.2.
|
|
283
|
+
"vite": "~5.2.10",
|
|
285
284
|
"vite-tsconfig-paths": "~4.3.2",
|
|
286
|
-
"vitest": "~1.
|
|
285
|
+
"vitest": "~1.5.1",
|
|
287
286
|
"webpack": "~5.91.0",
|
|
288
|
-
"webpack-bundle-analyzer": "~4.10.
|
|
287
|
+
"webpack-bundle-analyzer": "~4.10.2",
|
|
289
288
|
"webpack-cli": "~5.1.4",
|
|
290
289
|
"webpack-dev-server": "~4.15.2",
|
|
291
290
|
"webpack-manifest-plugin": "~5.0.0",
|