@absolutejs/absolute 0.19.0-beta.780 → 0.19.0-beta.781
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/build.js +3 -1
- package/dist/build.js.map +3 -3
- package/dist/cli/index.js +59 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +3 -3
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -10100,6 +10100,8 @@ var resolveDevClientDir3 = () => {
|
|
|
10100
10100
|
return filePath.replace(/\.vue$/, ".js");
|
|
10101
10101
|
if (filePath.endsWith(".ts"))
|
|
10102
10102
|
return filePath.replace(/\.ts$/, ".js");
|
|
10103
|
+
if (isStylePath(filePath))
|
|
10104
|
+
return filePath;
|
|
10103
10105
|
return `${filePath}.js`;
|
|
10104
10106
|
}, stripExports = (code) => code.replace(/export\s+default/, "const script =").replace(/^export\s+/gm, ""), mergeVueImports = (code) => {
|
|
10105
10107
|
const lines = code.split(`
|
|
@@ -17899,5 +17901,5 @@ export {
|
|
|
17899
17901
|
build
|
|
17900
17902
|
};
|
|
17901
17903
|
|
|
17902
|
-
//# debugId=
|
|
17904
|
+
//# debugId=529908DC5C87E9F364756E2164756E21
|
|
17903
17905
|
//# sourceMappingURL=build.js.map
|