@omnia/tooling-vue 8.0.124-dev → 8.0.127-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.
- package/internal-do-not-import-from-here/config/omnia.vendor.manifest.json +1 -1
- package/internal-do-not-import-from-here/config/tooling.output.json +1 -1
- package/internal-do-not-import-from-here/config/wctypings.d.ts +224 -34
- package/internal-do-not-import-from-here/tasks/ComponentDocRegistrations.js +1 -1
- package/internal-do-not-import-from-here/tasks/bundle.js +1 -1
- package/internal-do-not-import-from-here/tasks/vendor.js +4 -2
- package/package.json +3 -3
|
@@ -206,7 +206,7 @@ function buildEntries(serve = false) {
|
|
|
206
206
|
startTime = new Date().getTime();
|
|
207
207
|
$.tooling.logTime("Found [" + componentRegistrations.length + "] component registrations", startTime);
|
|
208
208
|
let componentEntries = createVueEntryFormComponentRegistrations(componentRegistrations);
|
|
209
|
-
if (serviceInfo.serviceType === tooling_composers_1.ServiceTypes.WebApp) {
|
|
209
|
+
if (serviceInfo.serviceType === tooling_composers_1.ServiceTypes.WebApp && process.argv.find(argv => argv === "--skipGenerateTypings") === undefined) {
|
|
210
210
|
await (0, doc_1.generateComponentTypingsAndDoc)(componentRegistrations);
|
|
211
211
|
}
|
|
212
212
|
var resourceRegistry = $.composers.ResourceRegistry;
|
|
@@ -249,7 +249,8 @@ return key;
|
|
|
249
249
|
// process: { env: { NODE_ENV: JSON.stringify('development') } },
|
|
250
250
|
'process.env.NODE_ENV': JSON.stringify('development'),
|
|
251
251
|
__VUE_OPTIONS_API__: true,
|
|
252
|
-
__VUE_PROD_DEVTOOLS__: true
|
|
252
|
+
__VUE_PROD_DEVTOOLS__: true,
|
|
253
|
+
__VUE_PROD_HYDRATION_MISMATCH_DETAILS__: false
|
|
253
254
|
})
|
|
254
255
|
]
|
|
255
256
|
})
|
|
@@ -401,7 +402,8 @@ return key;
|
|
|
401
402
|
// process: { env: { NODE_ENV: JSON.stringify('development') } },
|
|
402
403
|
'process.env.NODE_ENV': JSON.stringify('production'),
|
|
403
404
|
__VUE_OPTIONS_API__: true,
|
|
404
|
-
__VUE_PROD_DEVTOOLS__: false
|
|
405
|
+
__VUE_PROD_DEVTOOLS__: false,
|
|
406
|
+
__VUE_PROD_HYDRATION_MISMATCH_DETAILS__: false
|
|
405
407
|
})
|
|
406
408
|
]
|
|
407
409
|
})
|
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.127-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.127-dev",
|
|
23
|
+
"@omnia/tooling-composers": "8.0.127-dev",
|
|
24
24
|
"@types/mousetrap": "1.5.34",
|
|
25
25
|
"@types/quill": "1.3.6",
|
|
26
26
|
"@types/zepto": "1.0.29",
|