vona-cli-set-api 1.0.65 → 1.0.67

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.
@@ -90,6 +90,10 @@ export class CliBinBuild extends BeanCliBase {
90
90
  }
91
91
  const replaceValues = generateConfigDefine(env, ['NODE_ENV', 'META_MODE', 'META_FLAVOR']);
92
92
  const babelPluginZovaBeanModule = getAbsolutePathOfModule('babel-plugin-zova-bean-module', '');
93
+ const babelPluginTransformTypescriptMetadata = getAbsolutePathOfModule('babel-plugin-transform-typescript-metadata', '');
94
+ const babelPluginProposalDecorators = getAbsolutePathOfModule('@babel/plugin-proposal-decorators', '');
95
+ const babelPluginTransformClassProperties = getAbsolutePathOfModule('@babel/plugin-transform-class-properties', '');
96
+ const babelPluginTransformTypescript = getAbsolutePathOfModule('@babel/plugin-transform-typescript', '');
93
97
  const plugins = [
94
98
  alias({
95
99
  entries: aliasEntries,
@@ -112,10 +116,10 @@ export class CliBinBuild extends BeanCliBase {
112
116
  configFile: false,
113
117
  plugins: [
114
118
  [babelPluginZovaBeanModule, { brandName: 'vona' }],
115
- ['babel-plugin-transform-typescript-metadata'],
116
- ['@babel/plugin-proposal-decorators', { version: 'legacy' }],
117
- ['@babel/plugin-transform-class-properties', { loose: true }],
118
- ['@babel/plugin-transform-typescript'],
119
+ [babelPluginTransformTypescriptMetadata],
120
+ [babelPluginProposalDecorators, { version: 'legacy' }],
121
+ [babelPluginTransformClassProperties, { loose: true }],
122
+ [babelPluginTransformTypescript],
119
123
  ],
120
124
  }),
121
125
  ];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vona-cli-set-api",
3
3
  "type": "module",
4
- "version": "1.0.65",
4
+ "version": "1.0.67",
5
5
  "description": "vona cli-set-api",
6
6
  "publishConfig": {
7
7
  "access": "public"