@elliemae/pui-cli 7.8.0 → 7.8.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.
|
@@ -240,6 +240,15 @@ const baseConfig = (options) => ({
|
|
|
240
240
|
exclude: (0, import_helpers.excludeNodeModulesExcept)(import_helpers.modulesToTranspile),
|
|
241
241
|
type: "asset"
|
|
242
242
|
},
|
|
243
|
+
{
|
|
244
|
+
test: /iframe.html$/i,
|
|
245
|
+
resourceQuery: /resource/,
|
|
246
|
+
type: "asset/resource",
|
|
247
|
+
generator: {
|
|
248
|
+
filename: "latest/[name].[hash][ext][query]"
|
|
249
|
+
},
|
|
250
|
+
exclude: (0, import_helpers.excludeNodeModulesExcept)(import_helpers.modulesToTranspile)
|
|
251
|
+
},
|
|
243
252
|
{
|
|
244
253
|
resourceQuery: /resource/,
|
|
245
254
|
type: "asset/resource",
|
|
@@ -217,6 +217,15 @@ const baseConfig = (options) => ({
|
|
|
217
217
|
exclude: excludeNodeModulesExcept(modulesToTranspile),
|
|
218
218
|
type: "asset"
|
|
219
219
|
},
|
|
220
|
+
{
|
|
221
|
+
test: /iframe.html$/i,
|
|
222
|
+
resourceQuery: /resource/,
|
|
223
|
+
type: "asset/resource",
|
|
224
|
+
generator: {
|
|
225
|
+
filename: "latest/[name].[hash][ext][query]"
|
|
226
|
+
},
|
|
227
|
+
exclude: excludeNodeModulesExcept(modulesToTranspile)
|
|
228
|
+
},
|
|
220
229
|
{
|
|
221
230
|
resourceQuery: /resource/,
|
|
222
231
|
type: "asset/resource",
|
|
@@ -20,6 +20,7 @@ export function baseConfig(options: any): {
|
|
|
20
20
|
type?: undefined;
|
|
21
21
|
issuer?: undefined;
|
|
22
22
|
resourceQuery?: undefined;
|
|
23
|
+
generator?: undefined;
|
|
23
24
|
} | {
|
|
24
25
|
test: RegExp;
|
|
25
26
|
exclude: (modulePath: any) => boolean;
|
|
@@ -46,6 +47,7 @@ export function baseConfig(options: any): {
|
|
|
46
47
|
type?: undefined;
|
|
47
48
|
issuer?: undefined;
|
|
48
49
|
resourceQuery?: undefined;
|
|
50
|
+
generator?: undefined;
|
|
49
51
|
} | {
|
|
50
52
|
test: RegExp;
|
|
51
53
|
type: string;
|
|
@@ -54,6 +56,7 @@ export function baseConfig(options: any): {
|
|
|
54
56
|
use?: undefined;
|
|
55
57
|
issuer?: undefined;
|
|
56
58
|
resourceQuery?: undefined;
|
|
59
|
+
generator?: undefined;
|
|
57
60
|
} | {
|
|
58
61
|
test: RegExp;
|
|
59
62
|
issuer: RegExp;
|
|
@@ -62,6 +65,18 @@ export function baseConfig(options: any): {
|
|
|
62
65
|
use: string[];
|
|
63
66
|
resolve?: undefined;
|
|
64
67
|
type?: undefined;
|
|
68
|
+
generator?: undefined;
|
|
69
|
+
} | {
|
|
70
|
+
test: RegExp;
|
|
71
|
+
resourceQuery: RegExp;
|
|
72
|
+
type: string;
|
|
73
|
+
generator: {
|
|
74
|
+
filename: string;
|
|
75
|
+
};
|
|
76
|
+
exclude: (modulePath: any) => boolean;
|
|
77
|
+
resolve?: undefined;
|
|
78
|
+
use?: undefined;
|
|
79
|
+
issuer?: undefined;
|
|
65
80
|
} | {
|
|
66
81
|
resourceQuery: RegExp;
|
|
67
82
|
type: string;
|
|
@@ -70,6 +85,7 @@ export function baseConfig(options: any): {
|
|
|
70
85
|
resolve?: undefined;
|
|
71
86
|
use?: undefined;
|
|
72
87
|
issuer?: undefined;
|
|
88
|
+
generator?: undefined;
|
|
73
89
|
})[];
|
|
74
90
|
};
|
|
75
91
|
plugins: any[];
|