@forsakringskassan/vite-lib-config 4.6.4 → 4.6.6
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/tsdoc-metadata.json +1 -1
- package/dist/vite.config.cjs +3 -0
- package/dist/vite.config.mjs +3 -0
- package/package.json +2 -2
package/dist/tsdoc-metadata.json
CHANGED
package/dist/vite.config.cjs
CHANGED
|
@@ -10812,6 +10812,9 @@ function babelPlugin() {
|
|
|
10812
10812
|
enforce: "post",
|
|
10813
10813
|
apply: "build",
|
|
10814
10814
|
async transform(src, id) {
|
|
10815
|
+
if (id === "\0rolldown/runtime.js") {
|
|
10816
|
+
return null;
|
|
10817
|
+
}
|
|
10815
10818
|
const { pathname: filename } = new URL(id, "file://");
|
|
10816
10819
|
if (!filter.test(filename)) {
|
|
10817
10820
|
return null;
|
package/dist/vite.config.mjs
CHANGED
|
@@ -10802,6 +10802,9 @@ function babelPlugin() {
|
|
|
10802
10802
|
enforce: "post",
|
|
10803
10803
|
apply: "build",
|
|
10804
10804
|
async transform(src, id) {
|
|
10805
|
+
if (id === "\0rolldown/runtime.js") {
|
|
10806
|
+
return null;
|
|
10807
|
+
}
|
|
10805
10808
|
const { pathname: filename } = new URL(id, "file://");
|
|
10806
10809
|
if (!filter.test(filename)) {
|
|
10807
10810
|
return null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forsakringskassan/vite-lib-config",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.6",
|
|
4
4
|
"description": "Försäkringskassan toolchain to build libraries with Vite",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vite"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"dist"
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@microsoft/api-extractor": "7.58.
|
|
45
|
+
"@microsoft/api-extractor": "7.58.3",
|
|
46
46
|
"@vue/babel-preset-app": "5.0.9"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|