@elliemae/pui-cli 7.0.0-alpha.16 → 7.0.0-alpha.17
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/testing/jest.config.cjs +1 -1
- package/dist/esm/testing/jest.config.cjs +1 -1
- package/dist/types/lint-config/eslint/common.d.cts +2 -2
- package/dist/types/lint-config/eslint/non-react.d.cts +1 -1
- package/dist/types/lint-config/eslint/react.d.cts +1 -1
- package/dist/types/lint-config/eslint/typescript/common.d.cts +2 -2
- package/dist/types/lint-config/eslint/typescript/non-react.d.cts +1 -1
- package/dist/types/lint-config/eslint/typescript/react.d.cts +1 -1
- package/dist/types/testing/jest.config.d.cts +1 -1
- package/dist/types/testing/jest.node.config.d.cts +2 -2
- package/dist/types/testing/mocks/cssModule.d.ts +1 -1
- package/dist/types/testing/mocks/html.d.ts +1 -1
- package/dist/types/testing/mocks/image.d.ts +1 -1
- package/dist/types/testing/mocks/svg.d.ts +1 -1
- package/dist/types/transpile/swcrc.config.d.cts +1 -1
- package/dist/types/utils.d.cts +1 -1
- package/dist/types/webpack/webpack.lib.dev.babel.d.ts +1 -1
- package/dist/types/webpack/webpack.lib.prod.babel.d.ts +1 -1
- package/dist/types/webpack/webpack.prod.babel.d.ts +1 -1
- package/package.json +2 -2
|
@@ -92,7 +92,7 @@ const jestConfig = {
|
|
|
92
92
|
url: `http://localhost:3111${basePath}`,
|
|
93
93
|
},
|
|
94
94
|
testEnvironment: 'jsdom',
|
|
95
|
-
|
|
95
|
+
watchPlugins: ['jest-watch-typeahead/filename', 'jest-watch-typeahead/testname'],
|
|
96
96
|
};
|
|
97
97
|
|
|
98
98
|
if (isReactModule && jestConfig.setupFilesAfterEnv)
|
|
@@ -92,7 +92,7 @@ const jestConfig = {
|
|
|
92
92
|
url: `http://localhost:3111${basePath}`,
|
|
93
93
|
},
|
|
94
94
|
testEnvironment: 'jsdom',
|
|
95
|
-
|
|
95
|
+
watchPlugins: ['jest-watch-typeahead/filename', 'jest-watch-typeahead/testname'],
|
|
96
96
|
};
|
|
97
97
|
|
|
98
98
|
if (isReactModule && jestConfig.setupFilesAfterEnv)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
1
|
+
export const tsBaseExtends: string[];
|
|
2
|
+
export const tsBaseRules: {
|
|
3
3
|
'@typescript-eslint/explicit-module-boundary-types': string;
|
|
4
4
|
'@typescript-eslint/explicit-function-return-type': string;
|
|
5
5
|
'@typescript-eslint/no-use-before-define': (string | {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export const jestNodeConfig: {
|
|
2
2
|
testEnvironment: string;
|
|
3
3
|
transformIgnorePatterns: never[];
|
|
4
4
|
setupFiles: never[];
|
|
@@ -35,5 +35,5 @@ export var jestNodeConfig: {
|
|
|
35
35
|
testEnvironmentOptions: {
|
|
36
36
|
url: string;
|
|
37
37
|
};
|
|
38
|
-
|
|
38
|
+
watchPlugins: string[];
|
|
39
39
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare const _default: "CSS_MODULE";
|
|
2
2
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare const _default: "HTML_MODULE";
|
|
2
2
|
export default _default;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare const _default: "IMAGE_MOCK";
|
|
2
2
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export const swcrcConfig: any;
|
package/dist/types/utils.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare
|
|
1
|
+
declare const _default: any;
|
|
2
2
|
export default _default;
|
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.17",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
"swc-loader": "~0.2.1",
|
|
245
245
|
"ts-node": "~10.8.0",
|
|
246
246
|
"tsc-alias": "~1.6.7",
|
|
247
|
-
"typescript": "~4.
|
|
247
|
+
"typescript": "~4.7.2",
|
|
248
248
|
"update-notifier": "~5.1.0",
|
|
249
249
|
"url-loader": "~4.1.1",
|
|
250
250
|
"uuid": "~8.3.2",
|