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