@omnia/tooling-vue 8.0.15-vnext → 8.0.17-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/bb000000-0000-bbbb-0000-0000000000bb.wctypings.d.ts
CHANGED
|
@@ -67,6 +67,7 @@ import wc7fbf605e1ae24b21b0a9e35141aca17b from '../../../client/fx/ux/oxide/appb
|
|
|
67
67
|
import wc0c73f6d6c7f34688a93368434caaa389 from '../../../client/fx/ux/oxide/btn/Button';
|
|
68
68
|
import wcbeb97ee8f2a94d1b86980b1736f82e20 from '../../../client/fx/ux/oxide/btntoggle/ButtonToggle';
|
|
69
69
|
import wcffc99f8d26ae4caf84ece7c13463b6c5 from '../../../client/fx/ux/oxide/card/Card';
|
|
70
|
+
import wccdd8102dec85424da156ca516659956e from '../../../client/fx/ux/oxide/column/Column';
|
|
70
71
|
import wc2ae3cf98c95443a199d44705ad87d994 from '../../../client/fx/ux/oxide/dialog/Dialog';
|
|
71
72
|
import wcd1a4678669114d9293f42409a1080756 from '../../../client/fx/ux/oxide/divider/Divider';
|
|
72
73
|
import wc1f535ab2cf154914a9bb104aa46d1e2a from '../../../client/fx/ux/oxide/expansionpanel/ExpansionPanels';
|
|
@@ -94,6 +95,7 @@ import wc07776976fab941de8e169e6e903fb4fe from '../../../client/fx/ux/oxide/tab/
|
|
|
94
95
|
import wc7b543325ab85489eb1401d7bfdf6f5fc from '../../../client/fx/ux/oxide/text/Text';
|
|
95
96
|
import wc9a7ad06b091e4633a0fc3d380210f9cb from '../../../client/fx/ux/oxide/textfield/TextField';
|
|
96
97
|
import wc53c3a240c5bf4d39ac29ac7f1f7415ae from '../../../client/fx/ux/oxide/toolbar/Toolbar';
|
|
98
|
+
import wce1b9681a96a94f65a08577ef52b83752 from '../../../client/fx/ux/oxide/treeview/Treeview';
|
|
97
99
|
import wcb6ddbf2c41224cd29b92fcecbbdd31a0 from '../../../client/fx/ux/playground_test/Play2Component';
|
|
98
100
|
import wc1a58948a606a42078da3fb919cc4f7e6 from '../../../client/fx/ux/presetupwizard/PreSetupWizard';
|
|
99
101
|
import wc6d1d84cb210643c59ca8437fc36c75a1 from '../../../client/fx/ux/profilecard/ProfileCardRenderer';
|
|
@@ -240,6 +242,7 @@ declare global {
|
|
|
240
242
|
"o-btn": typeof wc0c73f6d6c7f34688a93368434caaa389.propsDefinition & VueComponentBaseProps;
|
|
241
243
|
"o-btn-toggle": typeof wcbeb97ee8f2a94d1b86980b1736f82e20.propsDefinition & VueComponentBaseProps;
|
|
242
244
|
"o-card": typeof wcffc99f8d26ae4caf84ece7c13463b6c5.propsDefinition & VueComponentBaseProps;
|
|
245
|
+
"o-col": typeof wccdd8102dec85424da156ca516659956e.propsDefinition & VueComponentBaseProps;
|
|
243
246
|
"o-dialog": typeof wc2ae3cf98c95443a199d44705ad87d994.propsDefinition & VueComponentBaseProps;
|
|
244
247
|
"o-divider": typeof wcd1a4678669114d9293f42409a1080756.propsDefinition & VueComponentBaseProps;
|
|
245
248
|
"o-expansion-panels": typeof wc1f535ab2cf154914a9bb104aa46d1e2a.propsDefinition & VueComponentBaseProps;
|
|
@@ -267,6 +270,7 @@ declare global {
|
|
|
267
270
|
"o-text": typeof wc7b543325ab85489eb1401d7bfdf6f5fc.propsDefinition & VueComponentBaseProps;
|
|
268
271
|
"o-text-field": typeof wc9a7ad06b091e4633a0fc3d380210f9cb.propsDefinition & VueComponentBaseProps;
|
|
269
272
|
"o-toolbar": typeof wc53c3a240c5bf4d39ac29ac7f1f7415ae.propsDefinition & VueComponentBaseProps;
|
|
273
|
+
"o-treeview": typeof wce1b9681a96a94f65a08577ef52b83752.propsDefinition & VueComponentBaseProps;
|
|
270
274
|
"omnia-play-2": typeof wcb6ddbf2c41224cd29b92fcecbbdd31a0.propsDefinition & VueComponentBaseProps;
|
|
271
275
|
"omfx-presetup-wizard": typeof wc1a58948a606a42078da3fb919cc4f7e6.propsDefinition & VueComponentBaseProps;
|
|
272
276
|
"omfx-profilecard-renderer": typeof wc6d1d84cb210643c59ca8437fc36c75a1.propsDefinition & VueComponentBaseProps;
|
|
@@ -36,7 +36,21 @@ $.tooling.core.registerBuildTask({
|
|
|
36
36
|
task: function () {
|
|
37
37
|
return new Promise(function (resolve, reject) {
|
|
38
38
|
buildWebpackEntries()
|
|
39
|
-
.then(
|
|
39
|
+
.then((result) => {
|
|
40
|
+
let startTime = new Date().getTime();
|
|
41
|
+
tooling_1.utils.log("Typescript checking...");
|
|
42
|
+
const spawn = require("child_process").spawn;
|
|
43
|
+
spawn("node", [path_1.default.resolve(__dirname, "./tsc.js")], { stdio: "inherit", })
|
|
44
|
+
.on('exit', (code) => {
|
|
45
|
+
if (code == 0) {
|
|
46
|
+
tooling_1.utils.logTime('Done - Typescript', startTime);
|
|
47
|
+
resolve(result);
|
|
48
|
+
}
|
|
49
|
+
else {
|
|
50
|
+
process.exit(code);
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
}, reject);
|
|
40
54
|
});
|
|
41
55
|
}
|
|
42
56
|
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require("typescript/lib/tsc");
|
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.17-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.17-vnext",
|
|
23
|
+
"@omnia/tooling-composers": "8.0.17-vnext",
|
|
24
24
|
"@types/mousetrap": "1.5.34",
|
|
25
25
|
"@types/node": "18.13.0",
|
|
26
26
|
"@types/quill": "1.3.6",
|