@forsakringskassan/vite-lib-config 3.1.0 → 3.2.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/index.js +2 -2
- package/dist/vite.config.cjs +8 -1
- package/dist/vite.config.mjs +8 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -13,5 +13,5 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
13
13
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
14
14
|
|
|
15
15
|
// src/index.ts
|
|
16
|
-
var
|
|
17
|
-
module.exports = __toCommonJS(
|
|
16
|
+
var index_exports = {};
|
|
17
|
+
module.exports = __toCommonJS(index_exports);
|
package/dist/vite.config.cjs
CHANGED
|
@@ -11508,7 +11508,14 @@ function vuePlugin(config) {
|
|
|
11508
11508
|
/**
|
|
11509
11509
|
* Keep whitespaces in contents coming from a slot and displayed in a pre for instance.
|
|
11510
11510
|
*/
|
|
11511
|
-
whitespace: "preserve"
|
|
11511
|
+
whitespace: "preserve",
|
|
11512
|
+
/**
|
|
11513
|
+
* Any element starting with `<ce-[...]>` is considered a custom
|
|
11514
|
+
* element (webcomponent).
|
|
11515
|
+
*/
|
|
11516
|
+
isCustomElement(tagName) {
|
|
11517
|
+
return tagName.startsWith("ce-");
|
|
11518
|
+
}
|
|
11512
11519
|
}
|
|
11513
11520
|
}
|
|
11514
11521
|
};
|
package/dist/vite.config.mjs
CHANGED
|
@@ -11488,7 +11488,14 @@ function vuePlugin2(config) {
|
|
|
11488
11488
|
/**
|
|
11489
11489
|
* Keep whitespaces in contents coming from a slot and displayed in a pre for instance.
|
|
11490
11490
|
*/
|
|
11491
|
-
whitespace: "preserve"
|
|
11491
|
+
whitespace: "preserve",
|
|
11492
|
+
/**
|
|
11493
|
+
* Any element starting with `<ce-[...]>` is considered a custom
|
|
11494
|
+
* element (webcomponent).
|
|
11495
|
+
*/
|
|
11496
|
+
isCustomElement(tagName) {
|
|
11497
|
+
return tagName.startsWith("ce-");
|
|
11498
|
+
}
|
|
11492
11499
|
}
|
|
11493
11500
|
}
|
|
11494
11501
|
};
|