@omnia/tooling-vue 8.0.102-vnext → 8.0.104-vnext
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/internal-do-not-import-from-here/shared.d.ts +6 -1
- package/internal-do-not-import-from-here/shared.js +18 -2
- package/internal-do-not-import-from-here/tasks/ComponentDocRegistrations.js +1 -1
- package/internal-do-not-import-from-here/tasks/bundle.js +10 -354
- package/internal-do-not-import-from-here/tasks/doc.d.ts +2 -1
- package/internal-do-not-import-from-here/tasks/doc.js +257 -397
- package/internal-do-not-import-from-here/vite/hmr/graph.js +1 -1
- package/internal-do-not-import-from-here/webpack-loaders/wc-loader.js +3 -1
- package/package.json +3 -3
|
@@ -152,7 +152,7 @@ async function buildFileGraph(unknownId, code) {
|
|
|
152
152
|
return { fileGraph, code };
|
|
153
153
|
}
|
|
154
154
|
fileGraph.js.scanned = true;
|
|
155
|
-
code = (0, shared_1.
|
|
155
|
+
code = (0, shared_1.modifyComponent)(code, fileGraph.id);
|
|
156
156
|
const esbuildTransformResult = await (0, vite_1.transformWithEsbuild)(code, id, esbuildTransformOptions);
|
|
157
157
|
code = esbuildTransformResult.code;
|
|
158
158
|
// d.ts or interface only
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const path_1 = tslib_1.__importDefault(require("path"));
|
|
3
5
|
const shared_1 = require("../shared");
|
|
4
6
|
function default_1(content, context) {
|
|
5
|
-
return (0, shared_1.
|
|
7
|
+
return (0, shared_1.modifyComponent)(content, "./" + path_1.default.relative(process.cwd(), this.resourcePath).replace(/\\/g, "/"));
|
|
6
8
|
}
|
|
7
9
|
exports.default = default_1;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/tooling-vue",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.104-vnext",
|
|
5
5
|
"description": "Used to bundle and serve manifests web component that build on Vue framework.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
],
|
|
20
20
|
"author": "Precio Fishbone",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@omnia/fx-models": "8.0.
|
|
23
|
-
"@omnia/tooling-composers": "8.0.
|
|
22
|
+
"@omnia/fx-models": "8.0.104-vnext",
|
|
23
|
+
"@omnia/tooling-composers": "8.0.104-vnext",
|
|
24
24
|
"@types/mousetrap": "1.5.34",
|
|
25
25
|
"@types/quill": "1.3.6",
|
|
26
26
|
"@types/zepto": "1.0.29",
|