@elliemae/pui-cli 6.10.1 → 6.11.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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Command Line Interface for UI Applications & Libraries
2
2
 
3
- [![Build Status](https://jenkins.dco.elmae/job/Platform%20UI/job/pui-cli/job/master/badge/icon)](https://jenkins.dco.elmae/job/Platform%20UI/job/pui-cli/job/master/)
3
+ [![Build Status](https://jenkins.dco.elmae/job/UIPlatform/job/Dev/job/pui-cli/job/master/badge/icon)](https://jenkins.dco.elmae/job/UIPlatform/job/Dev/job/pui-cli/job/master/)
4
4
 
5
5
  [SonarQube Report](https://sonar.ellielabs.com/overview?id=elliemae.pui.cli-master)
6
6
 
@@ -1,5 +1,6 @@
1
1
  /* eslint-disable max-lines */
2
2
  const webpack = require('webpack');
3
+ const path = require('path');
3
4
  const MiniCssExtractPlugin = require('mini-css-extract-plugin');
4
5
  const PostcssPresetEnv = require('postcss-preset-env');
5
6
  const CopyWebpackPlugin = require('copy-webpack-plugin');
@@ -213,7 +214,14 @@ module.exports = (options) => ({
213
214
  },
214
215
  plugins: plugins.concat(options.plugins),
215
216
  resolve: {
216
- modules: ['node_modules', 'app', 'lib'],
217
+ modules: [
218
+ 'node_modules',
219
+ 'app',
220
+ 'lib',
221
+ path.resolve(process.cwd(), 'node_modules'),
222
+ path.resolve(process.cwd(), 'app'),
223
+ path.resolve(process.cwd(), 'lib'),
224
+ ],
217
225
  extensions: ['.js', '.jsx', '.ts', '.tsx', '.json', '.wasm', '.mjs'],
218
226
  mainFields: ['browser', 'module', 'main'],
219
227
  alias: {
@@ -179,7 +179,14 @@ module.exports = (options) => ({
179
179
  },
180
180
  plugins: plugins.concat(options.plugins || []),
181
181
  resolve: {
182
- modules: ['node_modules', 'app', 'lib'],
182
+ modules: [
183
+ 'node_modules',
184
+ 'app',
185
+ 'lib',
186
+ path.resolve(process.cwd(), 'node_modules'),
187
+ path.resolve(process.cwd(), 'app'),
188
+ path.resolve(process.cwd(), 'lib'),
189
+ ],
183
190
  extensions: ['.ts', '.tsx', '.js', '.jsx', '.json', '.wasm', '.mjs'],
184
191
  mainFields: ['browser', 'module', 'main'],
185
192
  alias: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-cli",
3
- "version": "6.10.1",
3
+ "version": "6.11.0",
4
4
  "private": false,
5
5
  "description": "ICE MT UI Platform CLI",
6
6
  "sideEffects": false,
@@ -66,10 +66,10 @@
66
66
  "@commitlint/cli": "~16.2.1",
67
67
  "@commitlint/config-conventional": "~16.2.1",
68
68
  "@elliemae/browserslist-config-elliemae-latest-browsers": "~1.3.0",
69
- "@faker-js/faker": "6.0.0-alpha.7",
70
- "@nrwl/cli": "13.8.4",
71
- "@nrwl/tao": "13.8.4",
72
- "@nrwl/workspace": "13.8.4",
69
+ "@faker-js/faker": "6.0.0-beta.0",
70
+ "@nrwl/cli": "13.8.8",
71
+ "@nrwl/tao": "13.8.8",
72
+ "@nrwl/workspace": "13.8.8",
73
73
  "@pmmmwh/react-refresh-webpack-plugin": "~0.5.4",
74
74
  "@semantic-release/changelog": "~6.0.1",
75
75
  "@semantic-release/exec": "~6.0.3",
@@ -87,17 +87,17 @@
87
87
  "@stylelint/postcss-css-in-js": "~0.37.2",
88
88
  "@svgr/webpack": "~6.2.1",
89
89
  "@swc/cli": "~0.1.55",
90
- "@swc/core": "~1.2.148",
90
+ "@swc/core": "~1.2.153",
91
91
  "@swc/jest": "~0.2.20",
92
92
  "@testing-library/jest-dom": "~5.16.2",
93
- "@testing-library/react": "~12.1.3",
93
+ "@testing-library/react": "~12.1.4",
94
94
  "@testing-library/react-hooks": "~7.0.2",
95
95
  "@types/jest": "~27.4.1",
96
96
  "@types/node": "~17.0.21",
97
97
  "@types/rimraf": "~3.0.2",
98
98
  "@types/testing-library__jest-dom": "~5.14.3",
99
- "@typescript-eslint/eslint-plugin": "~5.13.0",
100
- "@typescript-eslint/parser": "~5.13.0",
99
+ "@typescript-eslint/eslint-plugin": "~5.14.0",
100
+ "@typescript-eslint/parser": "~5.14.0",
101
101
  "autoprefixer": "~10.4.2",
102
102
  "axe-core": "~4.4.1",
103
103
  "babel-loader": "~8.2.3",
@@ -113,7 +113,7 @@
113
113
  "babel-plugin-transform-remove-console": "~6.9.4",
114
114
  "babel-plugin-transform-strip-block": "~0.0.5",
115
115
  "body-parser": "~1.19.2",
116
- "browserslist": "~4.19.3",
116
+ "browserslist": "~4.20.0",
117
117
  "browserslist-to-esbuild": "~1.1.1",
118
118
  "canvas": "~2.9.0",
119
119
  "chalk": "~4.1.2",
@@ -123,7 +123,7 @@
123
123
  "copy-webpack-plugin": "~10.2.4",
124
124
  "cors": "~2.8.5",
125
125
  "cross-env": "~7.0.3",
126
- "css-loader": "~6.7.0",
126
+ "css-loader": "~6.7.1",
127
127
  "css-minimizer-webpack-plugin": "~3.4.1",
128
128
  "depcheck": "~1.4.3",
129
129
  "docdash": "~1.2.0",
@@ -137,7 +137,7 @@
137
137
  "eslint": "~8.10.0",
138
138
  "eslint-config-airbnb": "~19.0.4",
139
139
  "eslint-config-airbnb-base": "~15.0.0",
140
- "eslint-config-airbnb-typescript": "~16.1.0",
140
+ "eslint-config-airbnb-typescript": "~16.1.1",
141
141
  "eslint-config-prettier": "~8.5.0",
142
142
  "eslint-config-react-app": "~7.0.0",
143
143
  "eslint-import-resolver-babel-module": "~5.3.1",
@@ -147,7 +147,7 @@
147
147
  "eslint-plugin-eslint-comments": "~3.2.0",
148
148
  "eslint-plugin-import": "~2.25.4",
149
149
  "eslint-plugin-jest": "~26.1.1",
150
- "eslint-plugin-jsdoc": "~37.9.6",
150
+ "eslint-plugin-jsdoc": "~38.0.0",
151
151
  "eslint-plugin-jsx-a11y": "~6.5.1",
152
152
  "eslint-plugin-mdx": "~1.16.0",
153
153
  "eslint-plugin-prettier": "~4.0.0",
@@ -165,7 +165,7 @@
165
165
  "favicons-webpack-plugin": "~5.0.2",
166
166
  "fast-glob": "~3.2.11",
167
167
  "find-up": "~5.0.0",
168
- "happy-dom": "~2.45.0",
168
+ "happy-dom": "~2.46.3",
169
169
  "helmet-csp": "~3.4.0",
170
170
  "html-webpack-plugin": "~5.5.0",
171
171
  "http-server": "~14.1.0",
@@ -173,30 +173,30 @@
173
173
  "husky-init": "~7.1.0",
174
174
  "imports-loader": "~3.1.1",
175
175
  "ip": "~1.1.5",
176
- "jest-axe": "~5.0.1",
176
+ "jest-axe": "~6.0.0",
177
177
  "jest-cli": "~27.5.1",
178
178
  "jest-sonar-reporter": "~2.0.0",
179
179
  "jest-styled-components": "~7.0.8",
180
180
  "jscodeshift": "~0.13.1",
181
181
  "jsdoc": "~3.6.10",
182
182
  "lerna": "~4.0.0",
183
- "lint-staged": "~12.3.4",
183
+ "lint-staged": "~12.3.5",
184
184
  "mini-css-extract-plugin": "~2.6.0",
185
185
  "minimist": "~1.2.5",
186
186
  "moment": "~2.29.1",
187
187
  "moment-locales-webpack-plugin": "~1.2.0",
188
- "msw": "~0.38.2",
188
+ "msw": "~0.39.1",
189
189
  "node-gyp": "~9.0.0",
190
190
  "node-plop": "~0.30.0",
191
191
  "nodemon": "~2.0.15",
192
192
  "normalize-path": "~3.0.0",
193
- "npm-check-updates": "12.5.2",
193
+ "npm-check-updates": "12.5.3",
194
194
  "null-loader": "~4.0.1",
195
- "pino": "~7.8.0",
195
+ "pino": "~7.8.1",
196
196
  "pino-pretty": "~7.5.3",
197
197
  "pinst": "~3.0.0",
198
198
  "plop": "~3.0.5",
199
- "postcss": "~8.4.7",
199
+ "postcss": "~8.4.8",
200
200
  "postcss-html": "~1.3.0",
201
201
  "postcss-jsx": "~0.36.4",
202
202
  "postcss-loader": "~6.2.1",
@@ -218,7 +218,7 @@
218
218
  "slackify-markdown": "~4.3.1",
219
219
  "speed-measure-webpack-plugin": "~1.5.0",
220
220
  "storybook-addon-turbo-build": "~1.0.1",
221
- "storybook-builder-vite": "~0.1.17",
221
+ "storybook-builder-vite": "~0.1.18",
222
222
  "storybook-react-router": "~1.0.8",
223
223
  "style-loader": "~3.3.1",
224
224
  "stylelint": "~14.5.3",
@@ -226,20 +226,20 @@
226
226
  "stylelint-config-styled-components": "~0.1.1",
227
227
  "swc-loader": "~0.1.15",
228
228
  "terser-webpack-plugin": "~5.3.1",
229
- "ts-node": "~10.6.0",
230
- "tsc-alias": "~1.6.3",
229
+ "ts-node": "~10.7.0",
230
+ "tsc-alias": "~1.6.4",
231
231
  "typescript": "~4.6.2",
232
232
  "update-notifier": "~5.1.0",
233
233
  "url-loader": "~4.1.1",
234
234
  "uuid": "~8.3.2",
235
235
  "vite": "~2.8.6",
236
- "vitest": "~0.5.9",
236
+ "vitest": "~0.6.0",
237
237
  "webpack": "~5.65.0",
238
238
  "webpack-bundle-analyzer": "~4.5.0",
239
239
  "webpack-cli": "~4.9.2",
240
240
  "webpack-dev-middleware": "~5.3.1",
241
241
  "webpack-hot-middleware": "~2.25.1",
242
- "webpack-manifest-plugin": "~4.1.1",
242
+ "webpack-manifest-plugin": "~5.0.0",
243
243
  "webpack-merge": "~5.8.0",
244
244
  "whatwg-fetch": "~3.6.2",
245
245
  "workbox-webpack-plugin": "~6.5.1",