@elliemae/pui-cli 7.0.0-alpha.23 → 7.0.0-alpha.26
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/typedoc.cjs +3 -6
- package/dist/esm/typedoc.cjs +3 -6
- package/package.json +46 -46
package/dist/cjs/typedoc.cjs
CHANGED
|
@@ -3,13 +3,10 @@ const fs = require('fs');
|
|
|
3
3
|
|
|
4
4
|
const isApp = () => fs.existsSync(path.join(process.cwd(), 'app'));
|
|
5
5
|
|
|
6
|
-
const srcPath = path.join(
|
|
7
|
-
process.cwd(),
|
|
8
|
-
isApp() ? 'app' : 'lib',
|
|
9
|
-
);
|
|
6
|
+
const srcPath = path.join(process.cwd(), isApp() ? 'app' : 'lib');
|
|
10
7
|
|
|
11
8
|
module.exports = {
|
|
12
9
|
entryPoints: [srcPath],
|
|
13
|
-
exclude: ['**/*+(
|
|
14
|
-
out: 'docs',
|
|
10
|
+
exclude: ['**/*+(.spec|.e2e|.test).ts'],
|
|
11
|
+
out: path.join(process.cwd(), 'docs'),
|
|
15
12
|
};
|
package/dist/esm/typedoc.cjs
CHANGED
|
@@ -3,13 +3,10 @@ const fs = require('fs');
|
|
|
3
3
|
|
|
4
4
|
const isApp = () => fs.existsSync(path.join(process.cwd(), 'app'));
|
|
5
5
|
|
|
6
|
-
const srcPath = path.join(
|
|
7
|
-
process.cwd(),
|
|
8
|
-
isApp() ? 'app' : 'lib',
|
|
9
|
-
);
|
|
6
|
+
const srcPath = path.join(process.cwd(), isApp() ? 'app' : 'lib');
|
|
10
7
|
|
|
11
8
|
module.exports = {
|
|
12
9
|
entryPoints: [srcPath],
|
|
13
|
-
exclude: ['**/*+(
|
|
14
|
-
out: 'docs',
|
|
10
|
+
exclude: ['**/*+(.spec|.e2e|.test).ts'],
|
|
11
|
+
out: path.join(process.cwd(), 'docs'),
|
|
15
12
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "7.0.0-alpha.
|
|
3
|
+
"version": "7.0.0-alpha.26",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -63,24 +63,24 @@
|
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@axe-core/react": "~4.4.3",
|
|
66
|
-
"@babel/cli": "~7.
|
|
67
|
-
"@babel/core": "~7.18.
|
|
66
|
+
"@babel/cli": "~7.18.6",
|
|
67
|
+
"@babel/core": "~7.18.6",
|
|
68
68
|
"@babel/eslint-parser": "~7.18.2",
|
|
69
|
-
"@babel/node": "~7.18.
|
|
70
|
-
"@babel/plugin-proposal-class-properties": "~7.
|
|
71
|
-
"@babel/plugin-proposal-export-default-from": "~7.
|
|
69
|
+
"@babel/node": "~7.18.6",
|
|
70
|
+
"@babel/plugin-proposal-class-properties": "~7.18.6",
|
|
71
|
+
"@babel/plugin-proposal-export-default-from": "~7.18.6",
|
|
72
72
|
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
|
|
73
|
-
"@babel/plugin-transform-modules-commonjs": "~7.18.
|
|
74
|
-
"@babel/plugin-transform-react-constant-elements": "~7.
|
|
75
|
-
"@babel/plugin-transform-react-inline-elements": "~7.
|
|
76
|
-
"@babel/plugin-transform-react-jsx-source": "~7.
|
|
77
|
-
"@babel/plugin-transform-runtime": "~7.18.
|
|
78
|
-
"@babel/preset-env": "~7.18.
|
|
79
|
-
"@babel/preset-react": "~7.
|
|
80
|
-
"@babel/preset-typescript": "~7.
|
|
81
|
-
"@babel/runtime": "~7.18.
|
|
82
|
-
"@commitlint/cli": "~17.0.
|
|
83
|
-
"@commitlint/config-conventional": "~17.0.
|
|
73
|
+
"@babel/plugin-transform-modules-commonjs": "~7.18.6",
|
|
74
|
+
"@babel/plugin-transform-react-constant-elements": "~7.18.6",
|
|
75
|
+
"@babel/plugin-transform-react-inline-elements": "~7.18.6",
|
|
76
|
+
"@babel/plugin-transform-react-jsx-source": "~7.18.6",
|
|
77
|
+
"@babel/plugin-transform-runtime": "~7.18.6",
|
|
78
|
+
"@babel/preset-env": "~7.18.6",
|
|
79
|
+
"@babel/preset-react": "~7.18.6",
|
|
80
|
+
"@babel/preset-typescript": "~7.18.6",
|
|
81
|
+
"@babel/runtime": "~7.18.6",
|
|
82
|
+
"@commitlint/cli": "~17.0.3",
|
|
83
|
+
"@commitlint/config-conventional": "~17.0.3",
|
|
84
84
|
"@elliemae/browserslist-config-elliemae-latest-browsers": "~1.4.2",
|
|
85
85
|
"@faker-js/faker": "7.3.0",
|
|
86
86
|
"@nrwl/cli": "14.3.6",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"@storybook/addon-interactions": "~6.5.9",
|
|
97
97
|
"@storybook/addon-links": "~6.5.9",
|
|
98
98
|
"@storybook/addon-storysource": "~6.5.9",
|
|
99
|
-
"@storybook/builder-vite": "~0.1.
|
|
99
|
+
"@storybook/builder-vite": "~0.1.38",
|
|
100
100
|
"@storybook/builder-webpack5": "~6.5.9",
|
|
101
101
|
"@storybook/manager-webpack5": "~6.5.9",
|
|
102
102
|
"@storybook/react": "~6.5.9",
|
|
@@ -104,7 +104,7 @@
|
|
|
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.
|
|
107
|
+
"@swc/core": "~1.2.207",
|
|
108
108
|
"@swc/jest": "~0.2.21",
|
|
109
109
|
"@testing-library/jest-dom": "~5.16.4",
|
|
110
110
|
"@testing-library/react": "~13.3.0",
|
|
@@ -114,8 +114,8 @@
|
|
|
114
114
|
"@types/node": "~18.0.0",
|
|
115
115
|
"@types/rimraf": "~3.0.2",
|
|
116
116
|
"@types/testing-library__jest-dom": "~5.14.5",
|
|
117
|
-
"@typescript-eslint/eslint-plugin": "~5.
|
|
118
|
-
"@typescript-eslint/parser": "~5.
|
|
117
|
+
"@typescript-eslint/eslint-plugin": "~5.30.0",
|
|
118
|
+
"@typescript-eslint/parser": "~5.30.0",
|
|
119
119
|
"@vitejs/plugin-react": "~1.3.2",
|
|
120
120
|
"autoprefixer": "~10.4.7",
|
|
121
121
|
"axe-core": "~4.4.2",
|
|
@@ -124,15 +124,15 @@
|
|
|
124
124
|
"babel-plugin-import-remove-resource-query": "~1.0.0",
|
|
125
125
|
"babel-plugin-lodash": "~3.3.4",
|
|
126
126
|
"babel-plugin-module-resolver": "~4.1.0",
|
|
127
|
-
"babel-plugin-source-map-support": "~2.
|
|
127
|
+
"babel-plugin-source-map-support": "~2.2.0",
|
|
128
128
|
"babel-plugin-styled-components": "~2.0.7",
|
|
129
129
|
"babel-plugin-transform-react-remove-prop-types": "~0.4.24",
|
|
130
130
|
"babel-plugin-transform-remove-console": "~6.9.4",
|
|
131
131
|
"babel-plugin-transform-strip-block": "~0.0.5",
|
|
132
132
|
"body-parser": "~1.20.0",
|
|
133
|
-
"browserslist": "~4.21.
|
|
133
|
+
"browserslist": "~4.21.1",
|
|
134
134
|
"browserslist-to-esbuild": "~1.1.1",
|
|
135
|
-
"canvas": "~2.9.
|
|
135
|
+
"canvas": "~2.9.3",
|
|
136
136
|
"chalk": "~5.0.1",
|
|
137
137
|
"circular-dependency-plugin": "~5.2.2",
|
|
138
138
|
"compression": "~1.7.4",
|
|
@@ -145,9 +145,9 @@
|
|
|
145
145
|
"depcheck": "~1.4.3",
|
|
146
146
|
"docdash": "~1.2.0",
|
|
147
147
|
"dotenv": "~16.0.1",
|
|
148
|
-
"dotenv-webpack": "~7.1.
|
|
148
|
+
"dotenv-webpack": "~7.1.1",
|
|
149
149
|
"duplicate-package-checker-webpack-plugin": "~3.0.0",
|
|
150
|
-
"enhanced-resolve": "5.
|
|
150
|
+
"enhanced-resolve": "5.10.0",
|
|
151
151
|
"esbuild": "~0.14.47",
|
|
152
152
|
"esbuild-loader": "~2.19.0",
|
|
153
153
|
"esbuild-plugin-svgr": "~1.0.1",
|
|
@@ -158,20 +158,20 @@
|
|
|
158
158
|
"eslint-config-prettier": "~8.5.0",
|
|
159
159
|
"eslint-config-react-app": "~7.0.1",
|
|
160
160
|
"eslint-import-resolver-babel-module": "~5.3.1",
|
|
161
|
-
"eslint-import-resolver-typescript": "~
|
|
161
|
+
"eslint-import-resolver-typescript": "~3.1.1",
|
|
162
162
|
"eslint-import-resolver-webpack": "~0.13.2",
|
|
163
163
|
"eslint-plugin-compat": "~4.0.2",
|
|
164
164
|
"eslint-plugin-eslint-comments": "~3.2.0",
|
|
165
165
|
"eslint-plugin-import": "~2.26.0",
|
|
166
166
|
"eslint-plugin-jest": "~26.5.3",
|
|
167
167
|
"eslint-plugin-jsdoc": "~39.3.3",
|
|
168
|
-
"eslint-plugin-jsx-a11y": "~6.
|
|
168
|
+
"eslint-plugin-jsx-a11y": "~6.6.0",
|
|
169
169
|
"eslint-plugin-mdx": "~2.0.0",
|
|
170
|
-
"eslint-plugin-prettier": "~4.
|
|
171
|
-
"eslint-plugin-react": "~7.30.
|
|
170
|
+
"eslint-plugin-prettier": "~4.1.0",
|
|
171
|
+
"eslint-plugin-react": "~7.30.1",
|
|
172
172
|
"eslint-plugin-react-hooks": "~4.6.0",
|
|
173
173
|
"eslint-plugin-redux-saga": "~1.3.2",
|
|
174
|
-
"eslint-plugin-storybook": "~0.5.
|
|
174
|
+
"eslint-plugin-storybook": "~0.5.13",
|
|
175
175
|
"eslint-plugin-testing-library": "~5.5.1",
|
|
176
176
|
"eslint-plugin-wdio": "~7.19.4",
|
|
177
177
|
"execa": "~6.1.0",
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
"fast-glob": "~3.2.11",
|
|
184
184
|
"find-up": "~6.3.0",
|
|
185
185
|
"find-up-cli": "~5.0.0",
|
|
186
|
-
"happy-dom": "~5.3.
|
|
186
|
+
"happy-dom": "~5.3.4",
|
|
187
187
|
"helmet-csp": "~3.4.0",
|
|
188
188
|
"html-webpack-plugin": "~5.5.0",
|
|
189
189
|
"http-server": "~14.1.1",
|
|
@@ -192,34 +192,34 @@
|
|
|
192
192
|
"imports-loader": "~4.0.0",
|
|
193
193
|
"ip": "~1.1.8",
|
|
194
194
|
"jest-axe": "~6.0.0",
|
|
195
|
-
"jest-cli": "~28.1.
|
|
196
|
-
"jest-environment-jsdom": "~28.1.
|
|
195
|
+
"jest-cli": "~28.1.2",
|
|
196
|
+
"jest-environment-jsdom": "~28.1.2",
|
|
197
197
|
"jest-sonar-reporter": "~2.0.0",
|
|
198
198
|
"jest-styled-components": "~7.0.8",
|
|
199
199
|
"jest-watch-typeahead": "~1.1.0",
|
|
200
200
|
"jscodeshift": "~0.13.1",
|
|
201
201
|
"jsdoc": "~3.6.10",
|
|
202
|
-
"lerna": "~5.1.
|
|
203
|
-
"lint-staged": "~13.0.
|
|
202
|
+
"lerna": "~5.1.6",
|
|
203
|
+
"lint-staged": "~13.0.3",
|
|
204
204
|
"mini-css-extract-plugin": "~2.6.1",
|
|
205
205
|
"minimist": "~1.2.6",
|
|
206
206
|
"moment": "~2.29.3",
|
|
207
207
|
"moment-locales-webpack-plugin": "~1.2.0",
|
|
208
|
-
"msw": "~0.42.
|
|
208
|
+
"msw": "~0.42.3",
|
|
209
209
|
"node-gyp": "~9.0.0",
|
|
210
210
|
"node-plop": "~0.31.0",
|
|
211
|
-
"nodemon": "~2.0.
|
|
211
|
+
"nodemon": "~2.0.18",
|
|
212
212
|
"normalize-path": "~3.0.0",
|
|
213
|
-
"npm-check-updates": "14.
|
|
214
|
-
"pino": "~8.
|
|
215
|
-
"pino-pretty": "~8.
|
|
213
|
+
"npm-check-updates": "14.1.1",
|
|
214
|
+
"pino": "~8.1.0",
|
|
215
|
+
"pino-pretty": "~8.1.0",
|
|
216
216
|
"plop": "~3.1.1",
|
|
217
217
|
"postcss": "~8.4.14",
|
|
218
218
|
"postcss-html": "~1.4.1",
|
|
219
219
|
"postcss-jsx": "~0.36.4",
|
|
220
220
|
"postcss-loader": "~7.0.0",
|
|
221
221
|
"postcss-markdown": "~1.2.0",
|
|
222
|
-
"postcss-preset-env": "~7.7.
|
|
222
|
+
"postcss-preset-env": "~7.7.2",
|
|
223
223
|
"postcss-syntax": "~0.36.2",
|
|
224
224
|
"prettier": "~2.7.1",
|
|
225
225
|
"pug": "~3.0.2",
|
|
@@ -244,13 +244,13 @@
|
|
|
244
244
|
"swc-loader": "~0.2.3",
|
|
245
245
|
"ts-node": "~10.8.1",
|
|
246
246
|
"tsc-alias": "~1.6.11",
|
|
247
|
-
"typedoc": "~0.
|
|
247
|
+
"typedoc": "~0.23.2",
|
|
248
248
|
"typescript": "~4.7.4",
|
|
249
|
-
"update-notifier": "~
|
|
249
|
+
"update-notifier": "~6.0.2",
|
|
250
250
|
"url-loader": "~4.1.1",
|
|
251
251
|
"uuid": "~8.3.2",
|
|
252
|
-
"vite": "~2.9.
|
|
253
|
-
"vitest": "~0.
|
|
252
|
+
"vite": "~2.9.13",
|
|
253
|
+
"vitest": "~0.16.0",
|
|
254
254
|
"vite-tsconfig-paths": "~3.5.0",
|
|
255
255
|
"webpack": "~5.73.0",
|
|
256
256
|
"webpack-bundle-analyzer": "~4.5.0",
|