@elliemae/pui-cli 8.51.2 → 8.52.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/dist/cjs/testing/jest.config.cjs +2 -1
- package/dist/esm/testing/jest.config.cjs +2 -1
- package/dist/types/lib/server/cert.d.ts +1 -1
- package/dist/types/lib/testing/jest.config.d.cts +1 -1
- package/dist/types/lib/testing/jest.node.config.d.cts +1 -1
- package/dist/types/lib/utils.d.cts +1 -1
- package/dist/types/lib/utils.d.ts +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +34 -34
|
@@ -86,7 +86,8 @@ const jestConfig = {
|
|
|
86
86
|
'^.+\\.[jt]sx?$': ['@swc/jest', swcrcConfig],
|
|
87
87
|
},
|
|
88
88
|
transformIgnorePatterns: [
|
|
89
|
-
|
|
89
|
+
// eslint-disable-next-line prettier/prettier, no-useless-escape
|
|
90
|
+
'/node_modules/(?!(\@elliemae\/pui-cli|lodash-es|react-select|react-dates|d3|internmap|delaunator|robust-predicates))/',
|
|
90
91
|
],
|
|
91
92
|
globals: {
|
|
92
93
|
APP_CONFIG: getAppConfig(),
|
|
@@ -86,7 +86,8 @@ const jestConfig = {
|
|
|
86
86
|
'^.+\\.[jt]sx?$': ['@swc/jest', swcrcConfig],
|
|
87
87
|
},
|
|
88
88
|
transformIgnorePatterns: [
|
|
89
|
-
|
|
89
|
+
// eslint-disable-next-line prettier/prettier, no-useless-escape
|
|
90
|
+
'/node_modules/(?!(\@elliemae\/pui-cli|lodash-es|react-select|react-dates|d3|internmap|delaunator|robust-predicates))/',
|
|
90
91
|
],
|
|
91
92
|
globals: {
|
|
92
93
|
APP_CONFIG: getAppConfig(),
|
|
@@ -32,7 +32,7 @@ export namespace jestConfig {
|
|
|
32
32
|
};
|
|
33
33
|
let transformIgnorePatterns: string[];
|
|
34
34
|
namespace globals {
|
|
35
|
-
let APP_CONFIG: string |
|
|
35
|
+
let APP_CONFIG: string | NonSharedBuffer;
|
|
36
36
|
let __webpack_public_path__: string;
|
|
37
37
|
}
|
|
38
38
|
namespace testEnvironmentOptions {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const basePath: string;
|
|
2
2
|
export declare const isApp: () => boolean;
|
|
3
3
|
export declare const isHttps: () => boolean;
|
|
4
|
-
export declare const getAppConfig: () => "{}" |
|
|
4
|
+
export declare const getAppConfig: () => "{}" | NonSharedBuffer;
|