@omnia/tooling-vue 8.0.128-dev → 8.0.130-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/tooling.output.json +1 -1
- package/internal-do-not-import-from-here/config/wctypings.d.ts +53 -42
- package/internal-do-not-import-from-here/shared.js +2 -2
- package/internal-do-not-import-from-here/tasks/ComponentDocRegistrations.js +1 -1
- package/internal-do-not-import-from-here/webpack-loaders/ts-loader.d.ts +2 -0
- package/internal-do-not-import-from-here/webpack-loaders/ts-loader.js +4 -2
- package/internal-do-not-import-from-here/webpack-loaders/tsx-loader.d.ts +1 -0
- package/internal-do-not-import-from-here/webpack-loaders/tsx-loader.js +3 -2
- package/internal-do-not-import-from-here/webpack-plugins/omnia.webpack.plugins.js +2 -2
- package/package.json +3 -3
|
@@ -8,10 +8,12 @@ export default function (): {
|
|
|
8
8
|
options: {
|
|
9
9
|
loader: string;
|
|
10
10
|
target: string;
|
|
11
|
+
jsx: string;
|
|
11
12
|
tsconfigRaw: {
|
|
12
13
|
compilerOptions: {
|
|
13
14
|
jsx: string;
|
|
14
15
|
target: string;
|
|
16
|
+
experimentalDecorators: boolean;
|
|
15
17
|
useDefineForClassFields: boolean;
|
|
16
18
|
};
|
|
17
19
|
};
|
|
@@ -14,11 +14,13 @@ function default_1() {
|
|
|
14
14
|
loader: 'esbuild-loader',
|
|
15
15
|
options: {
|
|
16
16
|
loader: 'ts',
|
|
17
|
-
target: '
|
|
17
|
+
target: 'es2022',
|
|
18
|
+
jsx: 'preserve',
|
|
18
19
|
tsconfigRaw: {
|
|
19
20
|
compilerOptions: {
|
|
20
21
|
jsx: "preserve",
|
|
21
|
-
target: "
|
|
22
|
+
target: "es2022",
|
|
23
|
+
experimentalDecorators: true,
|
|
22
24
|
useDefineForClassFields: false
|
|
23
25
|
}
|
|
24
26
|
}
|
|
@@ -57,12 +57,13 @@ function default_1() {
|
|
|
57
57
|
loader: 'esbuild-loader',
|
|
58
58
|
options: {
|
|
59
59
|
loader: 'tsx',
|
|
60
|
-
target: '
|
|
60
|
+
target: 'es2022',
|
|
61
61
|
jsx: 'preserve',
|
|
62
62
|
tsconfigRaw: {
|
|
63
63
|
compilerOptions: {
|
|
64
64
|
jsx: "preserve",
|
|
65
|
-
target: "
|
|
65
|
+
target: "es2022",
|
|
66
|
+
experimentalDecorators: true,
|
|
66
67
|
useDefineForClassFields: false
|
|
67
68
|
}
|
|
68
69
|
}
|
|
@@ -231,6 +231,8 @@ const validate = createSchemaValidation(require("webpack/schemas/plugins/DllRefe
|
|
|
231
231
|
baseDataPath: "options"
|
|
232
232
|
});
|
|
233
233
|
class DllReferencePlugin {
|
|
234
|
+
static { this.trackingModuleRefId = 1; }
|
|
235
|
+
static { this.modulesMap = []; }
|
|
234
236
|
/**
|
|
235
237
|
* @param {DllReferencePluginOptions} options options object
|
|
236
238
|
*/
|
|
@@ -346,8 +348,6 @@ class DllReferencePlugin {
|
|
|
346
348
|
}
|
|
347
349
|
}
|
|
348
350
|
exports.DllReferencePlugin = DllReferencePlugin;
|
|
349
|
-
DllReferencePlugin.trackingModuleRefId = 1;
|
|
350
|
-
DllReferencePlugin.modulesMap = [];
|
|
351
351
|
class DllManifestError extends webpack_1.WebpackError {
|
|
352
352
|
constructor(filename, message) {
|
|
353
353
|
super();
|
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.130-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.130-dev",
|
|
23
|
+
"@omnia/tooling-composers": "8.0.130-dev",
|
|
24
24
|
"@types/mousetrap": "1.5.34",
|
|
25
25
|
"@types/quill": "1.3.6",
|
|
26
26
|
"@types/zepto": "1.0.29",
|