@forsakringskassan/vite-lib-config 4.3.6 → 4.3.7
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/api-extractor.js
CHANGED
|
@@ -5718,7 +5718,7 @@ function createDedent(options) {
|
|
|
5718
5718
|
result = result.trim();
|
|
5719
5719
|
}
|
|
5720
5720
|
if (escapeSpecialCharacters) {
|
|
5721
|
-
result = result.replace(/\\n/g, "\n");
|
|
5721
|
+
result = result.replace(/\\n/g, "\n").replace(/\\t/g, " ").replace(/\\r/g, "\r").replace(/\\v/g, "\v").replace(/\\b/g, "\b").replace(/\\f/g, "\f").replace(/\\0/g, "\0").replace(/\\x([\da-fA-F]{2})/g, (_2, h) => String.fromCharCode(parseInt(h, 16))).replace(/\\u\{([\da-fA-F]{1,6})\}/g, (_2, h) => String.fromCodePoint(parseInt(h, 16))).replace(/\\u([\da-fA-F]{4})/g, (_2, h) => String.fromCharCode(parseInt(h, 16)));
|
|
5722
5722
|
}
|
|
5723
5723
|
if (typeof Bun !== "undefined") {
|
|
5724
5724
|
result = result.replace(
|
package/dist/tsdoc-metadata.json
CHANGED
package/dist/vite.config.cjs
CHANGED
|
@@ -7830,7 +7830,7 @@ function createDedent(options) {
|
|
|
7830
7830
|
result = result.trim();
|
|
7831
7831
|
}
|
|
7832
7832
|
if (escapeSpecialCharacters) {
|
|
7833
|
-
result = result.replace(/\\n/g, "\n");
|
|
7833
|
+
result = result.replace(/\\n/g, "\n").replace(/\\t/g, " ").replace(/\\r/g, "\r").replace(/\\v/g, "\v").replace(/\\b/g, "\b").replace(/\\f/g, "\f").replace(/\\0/g, "\0").replace(/\\x([\da-fA-F]{2})/g, (_2, h) => String.fromCharCode(parseInt(h, 16))).replace(/\\u\{([\da-fA-F]{1,6})\}/g, (_2, h) => String.fromCodePoint(parseInt(h, 16))).replace(/\\u([\da-fA-F]{4})/g, (_2, h) => String.fromCharCode(parseInt(h, 16)));
|
|
7834
7834
|
}
|
|
7835
7835
|
if (typeof Bun !== "undefined") {
|
|
7836
7836
|
result = result.replace(
|
package/dist/vite.config.mjs
CHANGED
|
@@ -7820,7 +7820,7 @@ function createDedent(options) {
|
|
|
7820
7820
|
result = result.trim();
|
|
7821
7821
|
}
|
|
7822
7822
|
if (escapeSpecialCharacters) {
|
|
7823
|
-
result = result.replace(/\\n/g, "\n");
|
|
7823
|
+
result = result.replace(/\\n/g, "\n").replace(/\\t/g, " ").replace(/\\r/g, "\r").replace(/\\v/g, "\v").replace(/\\b/g, "\b").replace(/\\f/g, "\f").replace(/\\0/g, "\0").replace(/\\x([\da-fA-F]{2})/g, (_2, h) => String.fromCharCode(parseInt(h, 16))).replace(/\\u\{([\da-fA-F]{1,6})\}/g, (_2, h) => String.fromCodePoint(parseInt(h, 16))).replace(/\\u([\da-fA-F]{4})/g, (_2, h) => String.fromCharCode(parseInt(h, 16)));
|
|
7824
7824
|
}
|
|
7825
7825
|
if (typeof Bun !== "undefined") {
|
|
7826
7826
|
result = result.replace(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forsakringskassan/vite-lib-config",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.7",
|
|
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.57.
|
|
45
|
+
"@microsoft/api-extractor": "7.57.6",
|
|
46
46
|
"@vue/babel-preset-app": "5.0.9"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|