@elliemae/pui-cli 7.0.0-alpha.3 → 7.0.0-alpha.4
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/lint/stylelint.config.cjs +1 -1
- package/dist/cjs/testing/jest.config.cjs +2 -3
- package/dist/esm/lint/stylelint.config.cjs +1 -1
- package/dist/esm/testing/jest.config.cjs +2 -3
- package/dist/types/lint/stylelint.config.d.cts +1 -0
- package/dist/types/testing/jest.config.d.cts +2 -3
- package/dist/types/testing/jest.node.config.d.cts +2 -3
- package/package.json +1 -1
|
@@ -15,5 +15,5 @@ exports.stylelintConfig = {
|
|
|
15
15
|
'stylelint-config-recommended',
|
|
16
16
|
'stylelint-config-styled-components',
|
|
17
17
|
],
|
|
18
|
-
rules: { 'selector-type-no-unknown': null, 'no-extra-semicolons': null },
|
|
18
|
+
rules: { 'selector-type-no-unknown': null, 'no-extra-semicolons': null, 'function-no-unknown': null },
|
|
19
19
|
};
|
|
@@ -64,9 +64,8 @@ const jestConfig = {
|
|
|
64
64
|
'.*\\.(css|scss)$': getMockFilePath('cssModule.cjs'),
|
|
65
65
|
'.*\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|ico)$':
|
|
66
66
|
getMockFilePath('image.cjs'),
|
|
67
|
-
'.*\\.svg
|
|
68
|
-
'.*\\.(
|
|
69
|
-
'.*index.html\\?resource$': getMockFilePath('html.cjs'),
|
|
67
|
+
'.*\\.svg(?:\\?[a-zA-Z]+)?$': getMockFilePath('svg.cjs'),
|
|
68
|
+
'.*\\.html$(?:\\?[a-zA-Z]+)?$': getMockFilePath('html.cjs'),
|
|
70
69
|
'@elliemae/pui-user-monitoring': getMockFilePath('pui-user-monitoring.cjs'),
|
|
71
70
|
'@elliemae/pui-app-loader': getMockFilePath('pui-app-loader.cjs'),
|
|
72
71
|
'@elliemae/pui-diagnostics': getMockFilePath('pui-diagnostics.cjs'),
|
|
@@ -15,5 +15,5 @@ exports.stylelintConfig = {
|
|
|
15
15
|
'stylelint-config-recommended',
|
|
16
16
|
'stylelint-config-styled-components',
|
|
17
17
|
],
|
|
18
|
-
rules: { 'selector-type-no-unknown': null, 'no-extra-semicolons': null },
|
|
18
|
+
rules: { 'selector-type-no-unknown': null, 'no-extra-semicolons': null, 'function-no-unknown': null },
|
|
19
19
|
};
|
|
@@ -64,9 +64,8 @@ const jestConfig = {
|
|
|
64
64
|
'.*\\.(css|scss)$': getMockFilePath('cssModule.cjs'),
|
|
65
65
|
'.*\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|ico)$':
|
|
66
66
|
getMockFilePath('image.cjs'),
|
|
67
|
-
'.*\\.svg
|
|
68
|
-
'.*\\.(
|
|
69
|
-
'.*index.html\\?resource$': getMockFilePath('html.cjs'),
|
|
67
|
+
'.*\\.svg(?:\\?[a-zA-Z]+)?$': getMockFilePath('svg.cjs'),
|
|
68
|
+
'.*\\.html$(?:\\?[a-zA-Z]+)?$': getMockFilePath('html.cjs'),
|
|
70
69
|
'@elliemae/pui-user-monitoring': getMockFilePath('pui-user-monitoring.cjs'),
|
|
71
70
|
'@elliemae/pui-app-loader': getMockFilePath('pui-app-loader.cjs'),
|
|
72
71
|
'@elliemae/pui-diagnostics': getMockFilePath('pui-diagnostics.cjs'),
|
|
@@ -8,9 +8,8 @@ export namespace jestConfig {
|
|
|
8
8
|
'.*\\webpack-hmr(.[t|j]s)?$': any;
|
|
9
9
|
'.*\\.(css|scss)$': any;
|
|
10
10
|
'.*\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|ico)$': any;
|
|
11
|
-
'.*\\.svg
|
|
12
|
-
'.*\\.(
|
|
13
|
-
'.*index.html\\?resource$': any;
|
|
11
|
+
'.*\\.svg(?:\\?[a-zA-Z]+)?$': any;
|
|
12
|
+
'.*\\.html$(?:\\?[a-zA-Z]+)?$': any;
|
|
14
13
|
'@elliemae/pui-user-monitoring': any;
|
|
15
14
|
'@elliemae/pui-app-loader': any;
|
|
16
15
|
'@elliemae/pui-diagnostics': any;
|
|
@@ -12,9 +12,8 @@ export var jestNodeConfig: {
|
|
|
12
12
|
'.*\\webpack-hmr(.[t|j]s)?$': any;
|
|
13
13
|
'.*\\.(css|scss)$': any;
|
|
14
14
|
'.*\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|ico)$': any;
|
|
15
|
-
'.*\\.svg
|
|
16
|
-
'.*\\.(
|
|
17
|
-
'.*index.html\\?resource$': any;
|
|
15
|
+
'.*\\.svg(?:\\?[a-zA-Z]+)?$': any;
|
|
16
|
+
'.*\\.html$(?:\\?[a-zA-Z]+)?$': any;
|
|
18
17
|
'@elliemae/pui-user-monitoring': any;
|
|
19
18
|
'@elliemae/pui-app-loader': any;
|
|
20
19
|
'@elliemae/pui-diagnostics': any;
|