@elliemae/pui-cli 7.0.0-alpha.12 → 7.0.0-alpha.15

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.
@@ -10,7 +10,7 @@ const nodeEnvPreset = {
10
10
  const webEnvPreset = {
11
11
  modules: process.env.ES_MODULES === 'false' ? 'commonjs' : false,
12
12
  useBuiltIns: 'usage',
13
- corejs: { version: '3.19', proposals: true },
13
+ corejs: { version: '3.22', proposals: true },
14
14
  };
15
15
 
16
16
  const presetEnvOptions =
@@ -31,15 +31,13 @@ const test = async (commandOptions) => {
31
31
  };
32
32
  const testCmd = {
33
33
  handler: async (argv) => {
34
- let commandOptions = "--coverage";
34
+ let commandOptions = "--coverage --maxWorkers=50%";
35
35
  if (argv.fix)
36
36
  commandOptions = "-u";
37
37
  else if (argv.watch)
38
38
  commandOptions = "--watchAll";
39
39
  if (CI)
40
- commandOptions += " --ci --runInBand --no-colors";
41
- else
42
- commandOptions += " --maxWorkers=50%";
40
+ commandOptions += " --ci --no-colors";
43
41
  if (argv.p)
44
42
  commandOptions += " --passWithNoTests";
45
43
  if (argv.r)
@@ -20,12 +20,12 @@ __export(vitest_config_exports, {
20
20
  default: () => vitest_config_default
21
21
  });
22
22
  module.exports = __toCommonJS(vitest_config_exports);
23
- var import_vite = require("vite");
24
- var vitest_config_default = (0, import_vite.defineConfig)({
23
+ var import_config = require("vitest/config");
24
+ var vitest_config_default = (0, import_config.defineConfig)({
25
25
  test: {
26
26
  globals: true,
27
27
  root: process.cwd(),
28
- exclude: ["node_modules", "dist", ".idea", ".git", ".cache", "e2e"],
28
+ exclude: [...import_config.configDefaults.exclude, ".idea", ".git", ".cache", "e2e"],
29
29
  coverage: {
30
30
  reportsDirectory: "./reports/coverage"
31
31
  },
@@ -10,7 +10,7 @@ const nodeEnvPreset = {
10
10
  const webEnvPreset = {
11
11
  modules: process.env.ES_MODULES === 'false' ? 'commonjs' : false,
12
12
  useBuiltIns: 'usage',
13
- corejs: { version: '3.19', proposals: true },
13
+ corejs: { version: '3.22', proposals: true },
14
14
  };
15
15
 
16
16
  const presetEnvOptions =
@@ -6,15 +6,13 @@ const test = async (commandOptions) => {
6
6
  };
7
7
  const testCmd = {
8
8
  handler: async (argv) => {
9
- let commandOptions = "--coverage";
9
+ let commandOptions = "--coverage --maxWorkers=50%";
10
10
  if (argv.fix)
11
11
  commandOptions = "-u";
12
12
  else if (argv.watch)
13
13
  commandOptions = "--watchAll";
14
14
  if (CI)
15
- commandOptions += " --ci --runInBand --no-colors";
16
- else
17
- commandOptions += " --maxWorkers=50%";
15
+ commandOptions += " --ci --no-colors";
18
16
  if (argv.p)
19
17
  commandOptions += " --passWithNoTests";
20
18
  if (argv.r)
@@ -1,9 +1,9 @@
1
- import { defineConfig } from "vite";
1
+ import { defineConfig, configDefaults } from "vitest/config";
2
2
  var vitest_config_default = defineConfig({
3
3
  test: {
4
4
  globals: true,
5
5
  root: process.cwd(),
6
- exclude: ["node_modules", "dist", ".idea", ".git", ".cache", "e2e"],
6
+ exclude: [...configDefaults.exclude, ".idea", ".git", ".cache", "e2e"],
7
7
  coverage: {
8
8
  reportsDirectory: "./reports/coverage"
9
9
  },
@@ -1,2 +1,2 @@
1
- declare const _default: import("vite").UserConfigExport;
1
+ declare const _default: import("vitest/dist/config").UserConfigExport;
2
2
  export default _default;
@@ -1,7 +1,7 @@
1
1
  /// <reference types="node" />
2
2
  export const LATEST_VERSION: "latest";
3
3
  export function excludeNodeModulesExcept(modules: any): (modulePath: any) => boolean;
4
- export function getLibraryName(): any;
4
+ export function getLibraryName(): string;
5
5
  export function mapToFolder(dependencies: any, folder: any): any;
6
6
  export function getAlias(): any;
7
7
  export const modulesToTranspile: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-cli",
3
- "version": "7.0.0-alpha.12",
3
+ "version": "7.0.0-alpha.15",
4
4
  "description": "ICE MT UI Platform CLI",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -64,59 +64,59 @@
64
64
  "dependencies": {
65
65
  "@axe-core/react": "~4.4.2",
66
66
  "@babel/cli": "~7.17.10",
67
- "@babel/core": "~7.17.10",
67
+ "@babel/core": "~7.18.0",
68
68
  "@babel/eslint-parser": "~7.17.0",
69
69
  "@babel/node": "~7.17.10",
70
- "@babel/plugin-proposal-class-properties": "~7.16.7",
71
- "@babel/plugin-proposal-export-default-from": "~7.16.7",
70
+ "@babel/plugin-proposal-class-properties": "~7.17.12",
71
+ "@babel/plugin-proposal-export-default-from": "~7.17.12",
72
72
  "@babel/plugin-syntax-dynamic-import": "~7.8.3",
73
- "@babel/plugin-transform-modules-commonjs": "~7.17.9",
74
- "@babel/plugin-transform-react-constant-elements": "~7.17.6",
73
+ "@babel/plugin-transform-modules-commonjs": "~7.18.0",
74
+ "@babel/plugin-transform-react-constant-elements": "~7.17.12",
75
75
  "@babel/plugin-transform-react-inline-elements": "~7.16.7",
76
76
  "@babel/plugin-transform-react-jsx-source": "~7.16.7",
77
- "@babel/plugin-transform-runtime": "~7.17.10",
78
- "@babel/preset-env": "~7.17.10",
79
- "@babel/preset-react": "~7.16.7",
80
- "@babel/preset-typescript": "~7.16.7",
81
- "@babel/runtime": "~7.17.9",
82
- "@commitlint/cli": "~16.2.4",
83
- "@commitlint/config-conventional": "~16.2.4",
77
+ "@babel/plugin-transform-runtime": "~7.18.0",
78
+ "@babel/preset-env": "~7.18.0",
79
+ "@babel/preset-react": "~7.17.12",
80
+ "@babel/preset-typescript": "~7.17.12",
81
+ "@babel/runtime": "~7.18.0",
82
+ "@commitlint/cli": "~17.0.0",
83
+ "@commitlint/config-conventional": "~17.0.0",
84
84
  "@elliemae/browserslist-config-elliemae-latest-browsers": "~1.4.2",
85
- "@faker-js/faker": "6.3.1",
86
- "@nrwl/cli": "14.1.4",
87
- "@nrwl/tao": "14.1.4",
88
- "@nrwl/workspace": "14.1.4",
89
- "@pmmmwh/react-refresh-webpack-plugin": "~0.5.5",
85
+ "@faker-js/faker": "7.0.1",
86
+ "@nrwl/cli": "14.1.7",
87
+ "@nrwl/tao": "14.1.7",
88
+ "@nrwl/workspace": "14.1.7",
89
+ "@pmmmwh/react-refresh-webpack-plugin": "~0.5.7",
90
90
  "@semantic-release/changelog": "~6.0.1",
91
91
  "@semantic-release/exec": "~6.0.3",
92
92
  "@semantic-release/git": "~10.0.1",
93
- "@storybook/addon-a11y": "~6.4.22",
94
- "@storybook/addon-essentials": "~6.4.22",
93
+ "@storybook/addon-a11y": "~6.5.4",
94
+ "@storybook/addon-essentials": "~6.5.4",
95
95
  "@storybook/addon-events": "~6.2.9",
96
- "@storybook/addon-interactions": "~6.4.22",
97
- "@storybook/addon-links": "~6.4.22",
98
- "@storybook/addon-storysource": "~6.4.22",
99
- "@storybook/builder-vite": "~0.1.33",
100
- "@storybook/builder-webpack5": "~6.4.22",
101
- "@storybook/manager-webpack5": "~6.4.22",
102
- "@storybook/react": "~6.4.22",
103
- "@storybook/theming": "~6.4.22",
96
+ "@storybook/addon-interactions": "~6.5.4",
97
+ "@storybook/addon-links": "~6.5.4",
98
+ "@storybook/addon-storysource": "~6.5.4",
99
+ "@storybook/builder-vite": "~0.1.35",
100
+ "@storybook/builder-webpack5": "~6.5.4",
101
+ "@storybook/manager-webpack5": "~6.5.4",
102
+ "@storybook/react": "~6.5.4",
103
+ "@storybook/theming": "~6.5.4",
104
104
  "@stylelint/postcss-css-in-js": "~0.38.0",
105
105
  "@svgr/webpack": "~6.2.1",
106
106
  "@swc/cli": "~0.1.57",
107
- "@swc/core": "~1.2.179",
107
+ "@swc/core": "~1.2.189",
108
108
  "@swc/jest": "~0.2.21",
109
109
  "@testing-library/jest-dom": "~5.16.4",
110
110
  "@testing-library/react": "~13.2.0",
111
111
  "@testing-library/react-hooks": "~8.0.0",
112
- "@types/jest": "~27.5.0",
113
- "@types/node": "~17.0.31",
112
+ "@types/jest": "~27.5.1",
113
+ "@types/node": "~17.0.35",
114
114
  "@types/rimraf": "~3.0.2",
115
115
  "@types/testing-library__jest-dom": "~5.14.3",
116
- "@typescript-eslint/eslint-plugin": "~5.23.0",
117
- "@typescript-eslint/parser": "~5.23.0",
116
+ "@typescript-eslint/eslint-plugin": "~5.26.0",
117
+ "@typescript-eslint/parser": "~5.26.0",
118
118
  "autoprefixer": "~10.4.7",
119
- "axe-core": "~4.4.1",
119
+ "axe-core": "~4.4.2",
120
120
  "babel-plugin-date-fns": "~2.0.0",
121
121
  "babel-plugin-dynamic-import-node": "~2.3.3",
122
122
  "babel-plugin-import-remove-resource-query": "~1.0.0",
@@ -134,22 +134,22 @@
134
134
  "chalk": "~5.0.1",
135
135
  "circular-dependency-plugin": "~5.2.2",
136
136
  "compression": "~1.7.4",
137
- "compression-webpack-plugin": "~9.2.0",
138
- "copy-webpack-plugin": "~10.2.4",
137
+ "compression-webpack-plugin": "~10.0.0",
138
+ "copy-webpack-plugin": "~11.0.0",
139
139
  "cors": "~2.8.5",
140
140
  "cross-env": "~7.0.3",
141
141
  "css-loader": "~6.7.1",
142
- "css-minimizer-webpack-plugin": "~3.4.1",
142
+ "css-minimizer-webpack-plugin": "~4.0.0",
143
143
  "depcheck": "~1.4.3",
144
144
  "docdash": "~1.2.0",
145
- "dotenv": "~16.0.0",
145
+ "dotenv": "~16.0.1",
146
146
  "dotenv-webpack": "~7.1.0",
147
147
  "duplicate-package-checker-webpack-plugin": "~3.0.0",
148
148
  "enhanced-resolve": "5.9.3",
149
- "esbuild": "~0.14.38",
150
- "esbuild-loader": "~2.18.0",
149
+ "esbuild": "~0.14.39",
150
+ "esbuild-loader": "~2.19.0",
151
151
  "esbuild-plugin-svgr": "~1.0.1",
152
- "eslint": "~8.15.0",
152
+ "eslint": "~8.16.0",
153
153
  "eslint-config-airbnb": "~19.0.4",
154
154
  "eslint-config-airbnb-base": "~15.0.0",
155
155
  "eslint-config-airbnb-typescript": "~17.0.0",
@@ -161,34 +161,34 @@
161
161
  "eslint-plugin-compat": "~4.0.2",
162
162
  "eslint-plugin-eslint-comments": "~3.2.0",
163
163
  "eslint-plugin-import": "~2.26.0",
164
- "eslint-plugin-jest": "~26.1.5",
165
- "eslint-plugin-jsdoc": "~39.2.9",
164
+ "eslint-plugin-jest": "~26.2.2",
165
+ "eslint-plugin-jsdoc": "~39.3.0",
166
166
  "eslint-plugin-jsx-a11y": "~6.5.1",
167
167
  "eslint-plugin-mdx": "~1.17.0",
168
168
  "eslint-plugin-prettier": "~4.0.0",
169
- "eslint-plugin-react": "~7.29.4",
169
+ "eslint-plugin-react": "~7.30.0",
170
170
  "eslint-plugin-react-hooks": "~4.5.0",
171
171
  "eslint-plugin-redux-saga": "~1.3.2",
172
- "eslint-plugin-storybook": "~0.5.11",
173
- "eslint-plugin-testing-library": "~5.4.0",
172
+ "eslint-plugin-storybook": "~0.5.12",
173
+ "eslint-plugin-testing-library": "~5.5.0",
174
174
  "eslint-plugin-wdio": "~7.19.4",
175
175
  "execa": "~6.1.0",
176
176
  "express": "~4.18.1",
177
177
  "express-pino-logger": "~7.0.0",
178
- "express-static-gzip": "~2.1.6",
178
+ "express-static-gzip": "~2.1.7",
179
179
  "favicons": "~6.2.2",
180
180
  "favicons-webpack-plugin": "~5.0.2",
181
181
  "fast-glob": "~3.2.11",
182
182
  "find-up": "~6.3.0",
183
183
  "find-up-cli": "~5.0.0",
184
- "happy-dom": "~3.1.1",
184
+ "happy-dom": "~4.0.1",
185
185
  "helmet-csp": "~3.4.0",
186
186
  "html-webpack-plugin": "~5.5.0",
187
187
  "http-server": "~14.1.0",
188
188
  "husky": "~8.0.1",
189
189
  "husky-init": "~8.0.0",
190
- "imports-loader": "~3.1.1",
191
- "ip": "~1.1.5",
190
+ "imports-loader": "~4.0.0",
191
+ "ip": "~1.1.8",
192
192
  "jest-axe": "~6.0.0",
193
193
  "jest-cli": "~28.1.0",
194
194
  "jest-environment-jsdom": "~28.1.0",
@@ -202,21 +202,21 @@
202
202
  "minimist": "~1.2.6",
203
203
  "moment": "~2.29.3",
204
204
  "moment-locales-webpack-plugin": "~1.2.0",
205
- "msw": "~0.39.2",
205
+ "msw": "~0.41.0",
206
206
  "node-gyp": "~9.0.0",
207
207
  "node-plop": "~0.31.0",
208
208
  "nodemon": "~2.0.16",
209
209
  "normalize-path": "~3.0.0",
210
- "npm-check-updates": "12.5.11",
210
+ "npm-check-updates": "13.0.3",
211
211
  "pino": "~7.11.0",
212
212
  "pino-pretty": "~7.6.1",
213
213
  "plop": "~3.1.0",
214
- "postcss": "~8.4.13",
214
+ "postcss": "~8.4.14",
215
215
  "postcss-html": "~1.4.1",
216
216
  "postcss-jsx": "~0.36.4",
217
- "postcss-loader": "~6.2.1",
217
+ "postcss-loader": "~7.0.0",
218
218
  "postcss-markdown": "~1.2.0",
219
- "postcss-preset-env": "~7.5.0",
219
+ "postcss-preset-env": "~7.6.0",
220
220
  "postcss-syntax": "~0.36.2",
221
221
  "prettier": "~2.6.2",
222
222
  "pug": "~3.0.2",
@@ -235,19 +235,20 @@
235
235
  "storybook-builder-vite": "~0.1.23",
236
236
  "storybook-react-router": "~1.0.8",
237
237
  "style-loader": "~3.3.1",
238
- "stylelint": "~14.8.2",
238
+ "stylelint": "~14.8.3",
239
239
  "stylelint-config-recommended": "~7.0.0",
240
240
  "stylelint-config-styled-components": "~0.1.1",
241
- "swc-loader": "~0.2.0",
242
- "ts-node": "~10.7.0",
241
+ "swc-loader": "~0.2.1",
242
+ "ts-node": "~10.8.0",
243
243
  "tsc-alias": "~1.6.7",
244
244
  "typescript": "~4.6.4",
245
245
  "update-notifier": "~5.1.0",
246
246
  "url-loader": "~4.1.1",
247
247
  "uuid": "~8.3.2",
248
- "vite": "~2.9.8",
249
- "vitest": "~0.12.2",
250
- "webpack": "~5.72.0",
248
+ "vite": "~2.9.9",
249
+ "vitest": "~0.12.9",
250
+ "vite-tsconfig-paths": "~3.4.1",
251
+ "webpack": "~5.72.1",
251
252
  "webpack-bundle-analyzer": "~4.5.0",
252
253
  "webpack-cli": "~4.9.2",
253
254
  "webpack-dev-server": "~4.9.0",
@@ -255,7 +256,7 @@
255
256
  "webpack-merge": "~5.8.0",
256
257
  "whatwg-fetch": "~3.6.2",
257
258
  "workbox-webpack-plugin": "~6.5.3",
258
- "yargs": "~17.4.1"
259
+ "yargs": "~17.5.1"
259
260
  },
260
261
  "devDependencies": {
261
262
  "react": "~18.1.0",
File without changes
File without changes
File without changes