@omnia/tooling-vue 8.0.88-dev → 8.0.89-dev
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.
|
@@ -205,7 +205,7 @@ function buildEntries(serve = false) {
|
|
|
205
205
|
startTime = new Date().getTime();
|
|
206
206
|
$.tooling.logTime("Found [" + componentRegistrations.length + "] component registrations", startTime);
|
|
207
207
|
let componentEntries = createVueEntryFormComponentRegistrations(componentRegistrations);
|
|
208
|
-
if (
|
|
208
|
+
if (serviceInfo.serviceType === tooling_composers_1.ServiceTypes.WebApp) {
|
|
209
209
|
await (0, doc_1.generateComponentTypingsAndDoc)(componentRegistrations);
|
|
210
210
|
}
|
|
211
211
|
var resourceRegistry = $.composers.ResourceRegistry;
|
|
@@ -270,7 +270,9 @@ declare global {
|
|
|
270
270
|
};
|
|
271
271
|
await tooling_1.utils.asyncForEach(componentRegistrations, async (wc) => {
|
|
272
272
|
wcTypings = generateWebComponentTypings(wc, wcTypings, info, elementNamespaces);
|
|
273
|
-
|
|
273
|
+
if ((0, shared_1.getBuildOption)().docResourceManifestId) {
|
|
274
|
+
await buildDoc(wc);
|
|
275
|
+
}
|
|
274
276
|
});
|
|
275
277
|
if (Object.keys(elementNamespaces).length > 0) {
|
|
276
278
|
let result = `declare global {
|
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.89-dev",
|
|
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.89-dev",
|
|
23
|
+
"@omnia/tooling-composers": "8.0.89-dev",
|
|
24
24
|
"@types/mousetrap": "1.5.34",
|
|
25
25
|
"@types/quill": "1.3.6",
|
|
26
26
|
"@types/zepto": "1.0.29",
|