@omnia/tooling-vue 8.0.128-dev → 8.0.129-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.
@@ -357,6 +357,8 @@ function convertManifestPathToEntryPath(pathToManifest, pathsInManifest) {
357
357
  }
358
358
  exports.convertManifestPathToEntryPath = convertManifestPathToEntryPath;
359
359
  class ConfigurationManager {
360
+ static { this._webComponentTypings = null; }
361
+ static { this._outputInfoManagaer = null; }
360
362
  static get webComponentTypings() {
361
363
  if (!this._webComponentTypings) {
362
364
  this._webComponentTypings = new ImplementComponentTyping();
@@ -371,8 +373,6 @@ class ConfigurationManager {
371
373
  }
372
374
  }
373
375
  exports.ConfigurationManager = ConfigurationManager;
374
- ConfigurationManager._webComponentTypings = null;
375
- ConfigurationManager._outputInfoManagaer = null;
376
376
  class OutputInfoManager {
377
377
  constructor() {
378
378
  this.filePath = exports.isExtensionEnv ? path_1.default.resolve(__dirname, "tooling.output.json") : path_1.default.resolve(__dirname, "config/tooling.output.json");
@@ -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: 'es2020',
17
+ target: 'es2022',
18
+ jsx: 'preserve',
18
19
  tsconfigRaw: {
19
20
  compilerOptions: {
20
21
  jsx: "preserve",
21
- target: "es2020",
22
+ target: "es2022",
23
+ experimentalDecorators: true,
22
24
  useDefineForClassFields: false
23
25
  }
24
26
  }
@@ -21,6 +21,7 @@ export default function (): {
21
21
  compilerOptions: {
22
22
  jsx: string;
23
23
  target: string;
24
+ experimentalDecorators: boolean;
24
25
  useDefineForClassFields: boolean;
25
26
  };
26
27
  };
@@ -57,12 +57,13 @@ function default_1() {
57
57
  loader: 'esbuild-loader',
58
58
  options: {
59
59
  loader: 'tsx',
60
- target: 'es2020',
60
+ target: 'es2022',
61
61
  jsx: 'preserve',
62
62
  tsconfigRaw: {
63
63
  compilerOptions: {
64
64
  jsx: "preserve",
65
- target: "es2020",
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.128-dev",
4
+ "version": "8.0.129-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.128-dev",
23
- "@omnia/tooling-composers": "8.0.128-dev",
22
+ "@omnia/fx-models": "8.0.129-dev",
23
+ "@omnia/tooling-composers": "8.0.129-dev",
24
24
  "@types/mousetrap": "1.5.34",
25
25
  "@types/quill": "1.3.6",
26
26
  "@types/zepto": "1.0.29",