@elliemae/pui-cli 6.10.1 → 6.10.2
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
|
-
[](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: [
|
|
217
|
+
modules: [
|
|
218
|
+
path.resolve(process.cwd(), 'node_modules'),
|
|
219
|
+
path.resolve(process.cwd(), 'app'),
|
|
220
|
+
path.resolve(process.cwd(), 'lib'),
|
|
221
|
+
'node_modules',
|
|
222
|
+
'app',
|
|
223
|
+
'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: [
|
|
182
|
+
modules: [
|
|
183
|
+
path.resolve(process.cwd(), 'node_modules'),
|
|
184
|
+
path.resolve(process.cwd(), 'app'),
|
|
185
|
+
path.resolve(process.cwd(), 'lib'),
|
|
186
|
+
'node_modules',
|
|
187
|
+
'app',
|
|
188
|
+
'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.
|
|
3
|
+
"version": "6.10.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "ICE MT UI Platform CLI",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -87,7 +87,7 @@
|
|
|
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.
|
|
90
|
+
"@swc/core": "~1.2.149",
|
|
91
91
|
"@swc/jest": "~0.2.20",
|
|
92
92
|
"@testing-library/jest-dom": "~5.16.2",
|
|
93
93
|
"@testing-library/react": "~12.1.3",
|
|
@@ -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.
|
|
150
|
+
"eslint-plugin-jsdoc": "~37.9.7",
|
|
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",
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
"jscodeshift": "~0.13.1",
|
|
181
181
|
"jsdoc": "~3.6.10",
|
|
182
182
|
"lerna": "~4.0.0",
|
|
183
|
-
"lint-staged": "~12.3.
|
|
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",
|
|
@@ -226,8 +226,8 @@
|
|
|
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.
|
|
230
|
-
"tsc-alias": "~1.6.
|
|
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",
|