@procore/core-scripts 10.3.0-rc.26 → 11.0.0-rc.1
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 +1 -2
- package/dist/BaseCommand.js +1 -1
- package/dist/BaseCommand.js.map +1 -1
- package/dist/Generator.js +4 -4
- package/dist/Generator.js.map +1 -1
- package/dist/Workspace.js +1 -1
- package/dist/Workspace.js.map +1 -1
- package/dist/babel/config.js +2 -2
- package/dist/babel/config.js.map +1 -1
- package/dist/commands/app/build.js +8 -8
- package/dist/commands/app/build.js.map +1 -1
- package/dist/commands/app/clean.js +1 -1
- package/dist/commands/app/clean.js.map +1 -1
- package/dist/commands/app/gen.js +5 -5
- package/dist/commands/app/gen.js.map +1 -1
- package/dist/commands/app/start.js +6 -6
- package/dist/commands/app/start.js.map +1 -1
- package/dist/commands/lib/build.js +2 -2
- package/dist/commands/lib/build.js.map +1 -1
- package/dist/commands/lib/clean.js +1 -1
- package/dist/commands/lib/clean.js.map +1 -1
- package/dist/commands/lib/start.js +2 -2
- package/dist/commands/lib/start.js.map +1 -1
- package/dist/commands/lint/eslint.js +1 -4
- package/dist/commands/lint/eslint.js.map +1 -1
- package/dist/commands/lint/stylelint.js +1 -1
- package/dist/commands/lint/stylelint.js.map +1 -1
- package/dist/commands/rm.js +2 -2
- package/dist/commands/rm.js.map +1 -1
- package/dist/commands/test.js +2 -2
- package/dist/commands/test.js.map +1 -1
- package/dist/jest/transforms/reactSvg.js +1 -1
- package/dist/jest/transforms/reactSvg.js.map +1 -1
- package/dist/paths.js +2 -2
- package/dist/paths.js.map +1 -1
- package/dist/webpack/app/devServerConfig.js +4 -4
- package/dist/webpack/app/devServerConfig.js.map +1 -1
- package/dist/webpack/app/index.js +2 -2
- package/dist/webpack/app/index.js.map +1 -1
- package/dist/webpack/app/pluginDecorators/moduleFederationDecorator.js +1 -6
- package/dist/webpack/app/pluginDecorators/moduleFederationDecorator.js.map +1 -1
- package/dist/webpack/app/setupWebpack.js +13 -27
- package/dist/webpack/app/setupWebpack.js.map +1 -1
- package/dist/webpack/library/index.js +1 -1
- package/dist/webpack/library/index.js.map +1 -1
- package/dist/webpack/library/index.test.js +11 -11
- package/dist/webpack/library/index.test.js.map +1 -1
- package/dist/webpack/library/setupWebpack.js +2 -2
- package/dist/webpack/library/setupWebpack.js.map +1 -1
- package/docs/commands/app.md +4 -4
- package/docs/commands/info.md +1 -1
- package/docs/commands/lib.md +3 -3
- package/docs/commands/lint.md +2 -2
- package/docs/commands/rm.md +1 -1
- package/docs/commands/test.md +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +42 -48
- package/templates/app/gen/README.md.ejs +0 -1
- package/types/app.d.ts +3 -3
- package/CHANGELOG.md +0 -843
- package/configs/tsconfig.e2e.json +0 -7
- package/dist/commands/e2e/gen.js +0 -105
- package/dist/commands/e2e/gen.js.map +0 -1
- package/dist/commands/e2e/start.js +0 -77
- package/dist/commands/e2e/start.js.map +0 -1
- package/dist/cypress/loggerSupport.js +0 -6
- package/dist/cypress/loggerSupport.js.map +0 -1
- package/dist/cypress/plugins.js +0 -20
- package/dist/cypress/plugins.js.map +0 -1
- package/dist/cypress/preprocessor.js +0 -32
- package/dist/cypress/preprocessor.js.map +0 -1
- package/docs/commands/e2e.md +0 -35
- package/templates/e2e/gen/create.e2e.ejs +0 -0
- package/templates/e2e/gen/gitignore.ejs +0 -4
- package/templates/e2e/gen/globals.d.ts.ejs +0 -10
- package/templates/e2e/gen/supportIndex.ejs +0 -0
- package/templates/e2e/gen/tsconfig.json.ejs +0 -4
- package/types/e2e.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@procore/core-scripts",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.0.0-rc.1",
|
|
4
4
|
"description": "A CLI to enhance your development experience",
|
|
5
5
|
"author": "Procore Technologies",
|
|
6
6
|
"homepage": "https://github.com/procore/frontend-tooling#readme",
|
|
@@ -75,46 +75,40 @@
|
|
|
75
75
|
},
|
|
76
76
|
"lint": {
|
|
77
77
|
"description": "linting commands"
|
|
78
|
-
},
|
|
79
|
-
"e2e": {
|
|
80
|
-
"description": "end-to-end testing commands"
|
|
81
78
|
}
|
|
82
79
|
}
|
|
83
80
|
},
|
|
84
81
|
"dependencies": {
|
|
85
|
-
"@babel/cli": "7.
|
|
86
|
-
"@babel/core": "7.
|
|
87
|
-
"@babel/plugin-proposal-class-properties": "7.
|
|
88
|
-
"@babel/plugin-proposal-export-default-from": "7.
|
|
89
|
-
"@babel/plugin-proposal-object-rest-spread": "7.
|
|
90
|
-
"@babel/plugin-transform-runtime": "7.
|
|
91
|
-
"@babel/preset-env": "7.
|
|
92
|
-
"@babel/preset-react": "7.
|
|
93
|
-
"@babel/preset-typescript": "7.
|
|
94
|
-
"@
|
|
95
|
-
"@
|
|
96
|
-
"@module-federation/dashboard-plugin": "2.3.0",
|
|
97
|
-
"@oclif/command": "1.8.0",
|
|
98
|
-
"@oclif/config": "1.17.0",
|
|
82
|
+
"@babel/cli": "7.17.10",
|
|
83
|
+
"@babel/core": "7.18.2",
|
|
84
|
+
"@babel/plugin-proposal-class-properties": "7.17.12",
|
|
85
|
+
"@babel/plugin-proposal-export-default-from": "7.17.12",
|
|
86
|
+
"@babel/plugin-proposal-object-rest-spread": "7.18.0",
|
|
87
|
+
"@babel/plugin-transform-runtime": "7.18.2",
|
|
88
|
+
"@babel/preset-env": "7.18.2",
|
|
89
|
+
"@babel/preset-react": "7.17.12",
|
|
90
|
+
"@babel/preset-typescript": "7.17.12",
|
|
91
|
+
"@oclif/command": "1.8.16",
|
|
92
|
+
"@oclif/config": "1.18.3",
|
|
99
93
|
"@oclif/plugin-autocomplete": "0.3.0",
|
|
100
94
|
"@oclif/plugin-plugins": "1.10.1",
|
|
101
95
|
"@procore/cdn": "2.0.0",
|
|
102
|
-
"@procore/eslint-config": "10.
|
|
96
|
+
"@procore/eslint-config": "^10.1.0-rc.1",
|
|
103
97
|
"@svgr/webpack": "5.5.0",
|
|
104
|
-
"@types/css-minimizer-webpack-plugin": "3.0.2",
|
|
105
98
|
"@typescript-eslint/eslint-plugin": "3.6.0",
|
|
106
99
|
"@typescript-eslint/parser": "3.6.1",
|
|
107
100
|
"assert": "2.0.0",
|
|
108
101
|
"babel-core": "7.0.0-bridge.0",
|
|
109
102
|
"babel-eslint": "10.1.0",
|
|
110
103
|
"babel-jest": "26.6.3",
|
|
111
|
-
"babel-loader": "8.2.
|
|
104
|
+
"babel-loader": "8.2.5",
|
|
112
105
|
"babel-plugin-named-asset-import": "0.3.8",
|
|
113
106
|
"babel-plugin-styled-components": "1.13.2",
|
|
114
107
|
"babel-plugin-transform-builtin-extend": "1.1.2",
|
|
115
108
|
"babel-plugin-transform-class-properties": "6.24.1",
|
|
116
109
|
"babel-preset-react-app": "10.0.1",
|
|
117
110
|
"browserify-zlib": "0.2.0",
|
|
111
|
+
"browserslist": "4.20.4",
|
|
118
112
|
"buffer": "6.0.3",
|
|
119
113
|
"camelcase": "6.2.0",
|
|
120
114
|
"case-sensitive-paths-webpack-plugin": "2.4.0",
|
|
@@ -126,27 +120,24 @@
|
|
|
126
120
|
"cross-spawn": "7.0.3",
|
|
127
121
|
"crypto-browserify": "3.12.0",
|
|
128
122
|
"css-loader": "5.2.4",
|
|
129
|
-
"css-minimizer-webpack-plugin": "
|
|
130
|
-
"
|
|
131
|
-
"cypress-terminal-report": "3.4.1",
|
|
132
|
-
"debug": "4.3.2",
|
|
123
|
+
"css-minimizer-webpack-plugin": "4.0.0",
|
|
124
|
+
"debug": "4.3.4",
|
|
133
125
|
"deepmerge": "4.2.2",
|
|
134
|
-
"del": "6.
|
|
126
|
+
"del": "6.1.1",
|
|
135
127
|
"domain-browser": "4.22.0",
|
|
136
128
|
"dotenv": "8.2.0",
|
|
137
129
|
"dotenv-expand": "5.1.0",
|
|
138
|
-
"ejs": "3.1.
|
|
130
|
+
"ejs": "3.1.8",
|
|
139
131
|
"enquirer": "2.3.6",
|
|
140
132
|
"envinfo": "7.8.1",
|
|
141
133
|
"eslint": "7.32.0",
|
|
142
134
|
"eslint-config-airbnb": "18.2.1",
|
|
143
135
|
"eslint-config-prettier": "6.11.0",
|
|
144
|
-
"eslint-plugin-
|
|
145
|
-
"eslint-plugin-
|
|
146
|
-
"eslint-plugin-jsx-a11y": "6.4.1",
|
|
136
|
+
"eslint-plugin-import": "2.26.0",
|
|
137
|
+
"eslint-plugin-jsx-a11y": "6.5.1",
|
|
147
138
|
"eslint-plugin-prettier": "3.4.1",
|
|
148
|
-
"eslint-plugin-react": "7.
|
|
149
|
-
"eslint-plugin-react-hooks": "4.
|
|
139
|
+
"eslint-plugin-react": "7.30.0",
|
|
140
|
+
"eslint-plugin-react-hooks": "4.5.0",
|
|
150
141
|
"events": "3.3.0",
|
|
151
142
|
"execa": "5.1.1",
|
|
152
143
|
"file-loader": "6.2.0",
|
|
@@ -155,11 +146,13 @@
|
|
|
155
146
|
"https-browserify": "1.0.0",
|
|
156
147
|
"identity-obj-proxy": "3.0.0",
|
|
157
148
|
"is-wsl": "2.2.0",
|
|
158
|
-
"jest": "26.6.
|
|
159
|
-
"jest-cli": "26.6.
|
|
149
|
+
"jest": "26.6.2",
|
|
150
|
+
"jest-cli": "26.6.2",
|
|
160
151
|
"jest-environment-jsdom-sixteen": "2.0.0",
|
|
152
|
+
"jest-environment-node": "26.6.2",
|
|
161
153
|
"jest-pnp-resolver": "1.2.2",
|
|
162
154
|
"jest-watch-typeahead": "0.6.4",
|
|
155
|
+
"levenary": "1.1.1",
|
|
163
156
|
"make-dir": "3.1.0",
|
|
164
157
|
"mini-css-extract-plugin": "1.5.0",
|
|
165
158
|
"mocha": "9.1.3",
|
|
@@ -169,26 +162,26 @@
|
|
|
169
162
|
"path-browserify": "1.0.1",
|
|
170
163
|
"path-is-inside": "1.0.2",
|
|
171
164
|
"pnp-webpack-plugin": "1.7.0",
|
|
172
|
-
"postcss": "8.4.
|
|
165
|
+
"postcss": "8.4.14",
|
|
173
166
|
"postcss-flexbugs-fixes": "5.0.2",
|
|
174
167
|
"postcss-loader": "6.2.1",
|
|
175
168
|
"postcss-normalize": "10.0.1",
|
|
176
169
|
"postcss-preset-env": "6.7.0",
|
|
177
170
|
"precss": "4.0.0",
|
|
178
|
-
"prettier": "2.
|
|
171
|
+
"prettier": "2.6.2",
|
|
179
172
|
"process": "0.11.10",
|
|
180
173
|
"punycode": "2.1.1",
|
|
181
174
|
"querystring-es3": "0.2.1",
|
|
182
175
|
"ramda": "0.27.1",
|
|
183
176
|
"react-app-polyfill": "2.0.0",
|
|
184
177
|
"react-dev-utils": "11.0.4",
|
|
185
|
-
"react-error-overlay": "6.0.
|
|
178
|
+
"react-error-overlay": "6.0.11",
|
|
186
179
|
"readable-stream": "3.6.0",
|
|
187
|
-
"resolve": "1.
|
|
180
|
+
"resolve": "1.22.0",
|
|
188
181
|
"resolve-url-loader": "3.1.2",
|
|
189
|
-
"sass": "1.
|
|
182
|
+
"sass": "1.52.2",
|
|
190
183
|
"sass-loader": "11.0.1",
|
|
191
|
-
"sockjs-client": "1.
|
|
184
|
+
"sockjs-client": "1.6.1",
|
|
192
185
|
"stream-browserify": "3.0.0",
|
|
193
186
|
"stream-http": "3.2.0",
|
|
194
187
|
"string_decoder": "1.3.0",
|
|
@@ -199,14 +192,15 @@
|
|
|
199
192
|
"stylelint-config-styled-components": "0.1.1",
|
|
200
193
|
"stylelint-prettier": "1.2.0",
|
|
201
194
|
"stylelint-processor-styled-components": "1.10.0",
|
|
202
|
-
"terser
|
|
195
|
+
"terser": "5.14.0",
|
|
196
|
+
"terser-webpack-plugin": "5.3.3",
|
|
203
197
|
"thread-loader": "3.0.4",
|
|
204
198
|
"timers-browserify": "2.0.12",
|
|
205
199
|
"ts-pnp": "1.2.0",
|
|
206
200
|
"tsconfig": "7.0.0",
|
|
207
|
-
"tslib": "2.
|
|
201
|
+
"tslib": "2.4.0",
|
|
208
202
|
"tty-browserify": "0.0.1",
|
|
209
|
-
"typescript": "4.
|
|
203
|
+
"typescript": "4.7.3",
|
|
210
204
|
"url": "0.11.0",
|
|
211
205
|
"url-loader": "4.1.1",
|
|
212
206
|
"util": "0.12.4",
|
|
@@ -218,7 +212,7 @@
|
|
|
218
212
|
"webpack-chain": "6.5.1",
|
|
219
213
|
"webpack-dev-server": "3.11.2",
|
|
220
214
|
"webpack-manifest-plugin": "3.1.1",
|
|
221
|
-
"workbox-webpack-plugin": "6.
|
|
215
|
+
"workbox-webpack-plugin": "6.5.3",
|
|
222
216
|
"worker-loader": "3.0.8"
|
|
223
217
|
},
|
|
224
218
|
"devDependencies": {
|
|
@@ -229,9 +223,9 @@
|
|
|
229
223
|
"@types/cross-spawn": "6.0.2",
|
|
230
224
|
"@types/debug": "4.1.7",
|
|
231
225
|
"@types/dotenv": "8.2.0",
|
|
232
|
-
"@types/ejs": "3.1.
|
|
226
|
+
"@types/ejs": "3.1.1",
|
|
233
227
|
"@types/eslint": "7.28.1",
|
|
234
|
-
"@types/fs-extra": "9.0.
|
|
228
|
+
"@types/fs-extra": "9.0.13",
|
|
235
229
|
"@types/html-webpack-plugin": "3.2.6",
|
|
236
230
|
"@types/jest": "26.0.24",
|
|
237
231
|
"@types/jest-cli": "24.3.0",
|
|
@@ -239,12 +233,12 @@
|
|
|
239
233
|
"@types/node": "14.14.41",
|
|
240
234
|
"@types/npm-packlist": "1.1.2",
|
|
241
235
|
"@types/ramda": "0.27.60",
|
|
242
|
-
"@types/resolve": "1.20.
|
|
236
|
+
"@types/resolve": "1.20.2",
|
|
243
237
|
"@types/stylelint": "9.10.1",
|
|
244
238
|
"@types/validate-npm-package-name": "3.0.3",
|
|
245
239
|
"@types/webpack-bugsnag-plugins": "1.4.3",
|
|
246
240
|
"@types/webpack-dev-server": "3.11.5",
|
|
247
241
|
"@types/webpack-manifest-plugin": "3.0.5"
|
|
248
242
|
},
|
|
249
|
-
"gitHead": "
|
|
243
|
+
"gitHead": "7dcf8a29e03494ccd7ce04273b83b77bf8586021"
|
|
250
244
|
}
|
|
@@ -26,4 +26,3 @@ You should also consider using the VSCode [ESLint extension](https://marketplace
|
|
|
26
26
|
## Testing
|
|
27
27
|
|
|
28
28
|
Run unit/integration tests with `yarn test`. The optional `--watch` flag will re-run your tests as files change, for continuous feedback
|
|
29
|
-
Place any relevant unit/integration/e2e testing information here for this specific hydra client
|
package/types/app.d.ts
CHANGED
|
@@ -50,9 +50,9 @@ declare module '*.webp' {
|
|
|
50
50
|
declare module '*.svg' {
|
|
51
51
|
import * as React from 'react'
|
|
52
52
|
|
|
53
|
-
export const ReactComponent: React.FunctionComponent<
|
|
54
|
-
SVGSVGElement
|
|
55
|
-
|
|
53
|
+
export const ReactComponent: React.FunctionComponent<
|
|
54
|
+
React.SVGProps<SVGSVGElement>
|
|
55
|
+
>
|
|
56
56
|
|
|
57
57
|
const src: string
|
|
58
58
|
export default src
|