vona-cli-set-api 1.1.101 → 1.1.103

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.
@@ -18,7 +18,7 @@ export default metadataCustomSnippet({
18
18
  init: async ({ cli, argv, targetFile }) => {
19
19
  await catchError(() => {
20
20
  return cli.helper.invokeCli(
21
- [':create:bean', 'meta', 'index', `--module=${argv.module}`, '--nometadata', '--noformat'],
21
+ [':create:bean', 'meta', 'index', `--module=${argv.module}`, '--nometadata'],
22
22
  {
23
23
  cwd: argv.projectPath,
24
24
  },
@@ -32,7 +32,6 @@ export default metadataCustomSnippet({
32
32
  'version',
33
33
  `--module=${argv.module}`,
34
34
  '--nometadata',
35
- '--noformat',
36
35
  ],
37
36
  {
38
37
  cwd: argv.projectPath,
@@ -18,7 +18,7 @@ export default metadataCustomSnippet({
18
18
  language: 'plain',
19
19
  init: async ({ cli, argv, targetFile }) => {
20
20
  await catchError(() => {
21
- return cli.helper.invokeCli([':init:locale', argv.module, '--nometadata', '--noformat'], {
21
+ return cli.helper.invokeCli([':init:locale', argv.module, '--nometadata'], {
22
22
  cwd: argv.projectPath,
23
23
  });
24
24
  });
@@ -18,7 +18,7 @@ export default metadataCustomSnippet({
18
18
  init: async ({ cli, argv, targetFile }) => {
19
19
  await catchError(() => {
20
20
  return cli.helper.invokeCli(
21
- [':create:bean', 'meta', 'index', `--module=${argv.module}`, '--nometadata', '--noformat'],
21
+ [':create:bean', 'meta', 'index', `--module=${argv.module}`, '--nometadata'],
22
22
  {
23
23
  cwd: argv.projectPath,
24
24
  },
@@ -32,7 +32,6 @@ export default metadataCustomSnippet({
32
32
  'version',
33
33
  `--module=${argv.module}`,
34
34
  '--nometadata',
35
- '--noformat',
36
35
  ],
37
36
  {
38
37
  cwd: argv.projectPath,
@@ -18,7 +18,7 @@ export default metadataCustomSnippet({
18
18
  language: 'plain',
19
19
  init: async ({ cli, argv, targetFile }) => {
20
20
  await catchError(() => {
21
- return cli.helper.invokeCli([':init:locale', argv.module, '--nometadata', '--noformat'], {
21
+ return cli.helper.invokeCli([':init:locale', argv.module, '--nometadata'], {
22
22
  cwd: argv.projectPath,
23
23
  });
24
24
  });
package/dist/index.js CHANGED
@@ -916,7 +916,16 @@ class CliBinTest extends BeanCliBase {
916
916
  argv
917
917
  } = this.context;
918
918
  // globs
919
- const patterns = this._combineTestPatterns(projectPath, modulesMeta);
919
+ let patterns;
920
+ if (argv._.length > 0) {
921
+ patterns = argv._.map(item => {
922
+ if (item.startsWith('src/')) return item;
923
+ if (item.startsWith('vona/src/')) return item.substring('vona/'.length);
924
+ return `src/**/test/**/${item}`;
925
+ });
926
+ } else {
927
+ patterns = this._combineTestPatterns(projectPath, modulesMeta);
928
+ }
920
929
  // testFile
921
930
  let testFile = path.join(import.meta.dirname, '../../../toolsIsolate/test.ts');
922
931
  if (!fse.existsSync(testFile)) {
@@ -1039,13 +1048,14 @@ class CliCreateBean extends BeanCliBase {
1039
1048
  } = this.context;
1040
1049
  // super
1041
1050
  await super.execute();
1042
- // noformat
1043
- // argv.noformat = true;
1044
1051
  // ssrSiteModuleName
1045
1052
  argv.ssrSiteModuleName = fs.existsSync(path.join(argv.projectPath, 'src/suite/cabloy-start')) ? 'vona-module-start-siteadmin' : 'vona-module-basic-siteadmin';
1053
+ argv.ssrSiteModuleNameWeb = fs.existsSync(path.join(argv.projectPath, 'src/suite/cabloy-start')) ? 'vona-module-start-siteweb' : 'vona-module-basic-siteweb';
1046
1054
  argv.ssrSiteOnionName = fs.existsSync(path.join(argv.projectPath, 'src/suite/cabloy-start')) ? 'start-siteadmin:admin' : 'basic-siteadmin:admin';
1055
+ argv.ssrSiteOnionNameWeb = fs.existsSync(path.join(argv.projectPath, 'src/suite/cabloy-start')) ? 'start-siteweb:web' : 'basic-siteweb:web';
1047
1056
  argv.ssrSiteGroupName = fs.existsSync(path.join(argv.projectPath, 'src/suite/cabloy-start')) ? 'start-siteadmin:management' : 'basic-siteadmin:management';
1048
1057
  argv.ssrSiteRestNpm = fs.existsSync(path.join(argv.projectPath, 'src/suite/cabloy-start')) ? 'zova-rest-cabloy-start-admin' : 'zova-rest-cabloy-basic-admin';
1058
+ argv.ssrSiteRestNpmWeb = fs.existsSync(path.join(argv.projectPath, 'src/suite/cabloy-start')) ? 'zova-rest-cabloy-start-web' : 'zova-rest-cabloy-basic-web';
1049
1059
  // module name/info
1050
1060
  const moduleName = argv.module;
1051
1061
  argv.moduleInfo = this.helper.parseModuleInfo(moduleName);
@@ -1144,8 +1154,6 @@ class CliCreateModule extends BeanCliBase {
1144
1154
  } = this.context;
1145
1155
  // super
1146
1156
  await super.execute();
1147
- // noformat
1148
- // argv.noformat = true;
1149
1157
  // suite name/info
1150
1158
  const suiteName = argv.suite;
1151
1159
  if (suiteName) {
@@ -1217,8 +1225,6 @@ class CliCreateSuite extends BeanCliBase {
1217
1225
  } = this.context;
1218
1226
  // super
1219
1227
  await super.execute();
1220
- // noformat
1221
- // argv.noformat = true;
1222
1228
  // nameMeta
1223
1229
  const nameMeta = this.helper.parseNameMeta(argv.name);
1224
1230
  const suiteDir = nameMeta.directory || 'suite';
@@ -1251,8 +1257,6 @@ class CliCreateTest extends BeanCliBase {
1251
1257
  } = this.context;
1252
1258
  // super
1253
1259
  await super.execute();
1254
- // noformat
1255
- // argv.noformat = true;
1256
1260
  // module name/info
1257
1261
  const moduleName = argv.module;
1258
1262
  argv.moduleInfo = this.helper.parseModuleInfo(moduleName);
@@ -1397,8 +1401,6 @@ class CliInitAppMonkey extends BeanCliBase {
1397
1401
  } = this.context;
1398
1402
  // super
1399
1403
  await super.execute();
1400
- // noformat
1401
- // argv.noformat = true;
1402
1404
  // target dir
1403
1405
  const targetDir = path.join(argv.projectPath, 'src/backend/config');
1404
1406
  const monkeyFile = path.join(targetDir, 'monkey.ts');
@@ -1422,8 +1424,6 @@ class CliInitAsset extends BeanCliBase {
1422
1424
  } = this.context;
1423
1425
  // super
1424
1426
  await super.execute();
1425
- // noformat
1426
- // argv.noformat = true;
1427
1427
  // module name/info
1428
1428
  const moduleName = argv.module;
1429
1429
  argv.moduleInfo = this.helper.parseModuleInfo(moduleName);
@@ -1452,8 +1452,6 @@ class CliInitConfig extends BeanCliBase {
1452
1452
  } = this.context;
1453
1453
  // super
1454
1454
  await super.execute();
1455
- // noformat
1456
- // argv.noformat = true;
1457
1455
  // module name/info
1458
1456
  const moduleName = argv._[0];
1459
1457
  if (!moduleName) return;
@@ -1492,8 +1490,6 @@ class CliInitConstant extends BeanCliBase {
1492
1490
  } = this.context;
1493
1491
  // super
1494
1492
  await super.execute();
1495
- // noformat
1496
- // argv.noformat = true;
1497
1493
  // module name/info
1498
1494
  const moduleName = argv._[0];
1499
1495
  if (!moduleName) return;
@@ -1532,8 +1528,6 @@ class CliInitError extends BeanCliBase {
1532
1528
  } = this.context;
1533
1529
  // super
1534
1530
  await super.execute();
1535
- // noformat
1536
- // argv.noformat = true;
1537
1531
  // module name/info
1538
1532
  const moduleName = argv._[0];
1539
1533
  if (!moduleName) return;
@@ -1583,8 +1577,6 @@ class CliInitLib extends BeanCliBase {
1583
1577
  } = this.context;
1584
1578
  // super
1585
1579
  await super.execute();
1586
- // noformat
1587
- // argv.noformat = true;
1588
1580
  // module name/info
1589
1581
  const moduleName = argv._[0];
1590
1582
  if (!moduleName) return;
@@ -1623,8 +1615,6 @@ class CliInitLocale extends BeanCliBase {
1623
1615
  } = this.context;
1624
1616
  // super
1625
1617
  await super.execute();
1626
- // noformat
1627
- // argv.noformat = true;
1628
1618
  // module name/info
1629
1619
  const moduleName = argv._[0];
1630
1620
  if (!moduleName) return;
@@ -1663,8 +1653,6 @@ class CliInitMain extends BeanCliBase {
1663
1653
  } = this.context;
1664
1654
  // super
1665
1655
  await super.execute();
1666
- // noformat
1667
- // argv.noformat = true;
1668
1656
  // module name/info
1669
1657
  const moduleName = argv._[0];
1670
1658
  if (!moduleName) return;
@@ -1703,8 +1691,6 @@ class CliInitMonkey extends BeanCliBase {
1703
1691
  } = this.context;
1704
1692
  // super
1705
1693
  await super.execute();
1706
- // noformat
1707
- // argv.noformat = true;
1708
1694
  // module name/info
1709
1695
  const moduleName = argv._[0];
1710
1696
  if (!moduleName) return;
@@ -1767,8 +1753,6 @@ class CliInitStatic extends BeanCliBase {
1767
1753
  } = this.context;
1768
1754
  // super
1769
1755
  await super.execute();
1770
- // noformat
1771
- // argv.noformat = true;
1772
1756
  // module name/info
1773
1757
  const moduleName = argv._[0];
1774
1758
  if (!moduleName) return;
@@ -1805,8 +1789,6 @@ class CliInitTypes extends BeanCliBase {
1805
1789
  } = this.context;
1806
1790
  // super
1807
1791
  await super.execute();
1808
- // noformat
1809
- // argv.noformat = true;
1810
1792
  // module name/info
1811
1793
  const moduleName = argv._[0];
1812
1794
  if (!moduleName) return;
@@ -1845,8 +1827,6 @@ class CliToolsCrud extends BeanCliBase {
1845
1827
  } = this.context;
1846
1828
  // super
1847
1829
  await super.execute();
1848
- // noformat
1849
- // argv.noformat = true;
1850
1830
  // ssrSiteModuleName
1851
1831
  const isCabloyStart = fs.existsSync(path.join(argv.projectPath, '__CABLOY_START__'));
1852
1832
  argv.ssrSiteModuleName = isCabloyStart ? 'vona-module-start-siteadmin' : 'vona-module-basic-siteadmin';
@@ -1898,8 +1878,6 @@ class CliToolsCrudBasic extends BeanCliBase {
1898
1878
  } = this.context;
1899
1879
  // super
1900
1880
  await super.execute();
1901
- // noformat
1902
- // argv.noformat = true;
1903
1881
  // module name/info
1904
1882
  const moduleName = argv.module;
1905
1883
  argv.moduleInfo = this.helper.parseModuleInfo(moduleName);
@@ -1944,8 +1922,6 @@ class CliToolsCrudStart extends BeanCliBase {
1944
1922
  } = this.context;
1945
1923
  // super
1946
1924
  await super.execute();
1947
- // noformat
1948
- // argv.noformat = true;
1949
1925
  // module name/info
1950
1926
  const moduleName = argv.module;
1951
1927
  argv.moduleInfo = this.helper.parseModuleInfo(moduleName);
@@ -2805,7 +2781,7 @@ var binBuild = {
2805
2781
  info: {
2806
2782
  version: '5.0.0',
2807
2783
  title: 'Cli: Tools: Bin',
2808
- usage: 'vona :bin:build [--workers=] [--flavor=] [--sourcemap=]'
2784
+ usage: 'npm run vona :bin:build -- [--workers=] [--flavor=] [--sourcemap=]'
2809
2785
  },
2810
2786
  options: {
2811
2787
  workers: {
@@ -2824,7 +2800,7 @@ var binBuildGeneral = {
2824
2800
  info: {
2825
2801
  version: '5.0.0',
2826
2802
  title: 'Cli: Tools: Bin',
2827
- usage: 'vona :bin:buildGeneral [--minify] [--sourcemap]'
2803
+ usage: 'npm run vona :bin:buildGeneral -- [--minify] [--sourcemap]'
2828
2804
  },
2829
2805
  options: {
2830
2806
  minify: {
@@ -2843,7 +2819,7 @@ var binBuildModule = {
2843
2819
  info: {
2844
2820
  version: '5.0.0',
2845
2821
  title: 'Cli: Tools: Bin',
2846
- usage: 'vona :bin:buildModule [--minify] [--sourcemap]'
2822
+ usage: 'npm run vona :bin:buildModule -- [--minify] [--sourcemap]'
2847
2823
  },
2848
2824
  options: {
2849
2825
  minify: {
@@ -2862,7 +2838,7 @@ var binDbReset = {
2862
2838
  info: {
2863
2839
  version: '5.0.0',
2864
2840
  title: 'Cli: Bin: DbReset',
2865
- usage: 'vona :bin:dbReset [--flavor=]'
2841
+ usage: 'npm run vona :bin:dbReset -- [--flavor=]'
2866
2842
  },
2867
2843
  options: {
2868
2844
  flavor: {
@@ -2877,7 +2853,7 @@ var binDev = {
2877
2853
  info: {
2878
2854
  version: '5.0.0',
2879
2855
  title: 'Cli: Bin: Dev',
2880
- usage: 'vona :bin:dev [--workers=] [--flavor=]'
2856
+ usage: 'npm run vona :bin:dev -- [--workers=] [--flavor=]'
2881
2857
  },
2882
2858
  options: {
2883
2859
  workers: {
@@ -2896,7 +2872,7 @@ var binPlay = {
2896
2872
  info: {
2897
2873
  version: '5.0.0',
2898
2874
  title: 'Cli: Bin: Play',
2899
- usage: 'vona :bin:play [index.ts] [--flavor=] [--retainRuntime=] [--attach]'
2875
+ usage: 'npm run vona :bin:play [index.ts] -- [--flavor=] [--retainRuntime=] [--attach]'
2900
2876
  },
2901
2877
  options: {
2902
2878
  mode: {
@@ -2924,7 +2900,7 @@ var binTest = {
2924
2900
  info: {
2925
2901
  version: '5.0.0',
2926
2902
  title: 'Cli: Bin: Test',
2927
- usage: 'vona :bin:test [--coverage=] [--flavor=]'
2903
+ usage: 'npm run vona :bin:test -- [--coverage=] [--flavor=]'
2928
2904
  },
2929
2905
  options: {
2930
2906
  coverage: {
@@ -2943,7 +2919,7 @@ var binTsc = {
2943
2919
  info: {
2944
2920
  version: '5.0.0',
2945
2921
  title: 'Cli: Bin: Tsc',
2946
- usage: 'vona :bin:tsc [--force]'
2922
+ usage: 'npm run vona :bin:tsc -- [--force]'
2947
2923
  },
2948
2924
  options: {
2949
2925
  force: {
@@ -2958,7 +2934,7 @@ var createBean = {
2958
2934
  info: {
2959
2935
  version: '5.0.0',
2960
2936
  title: 'Cli: Create Bean',
2961
- usage: 'vona :create:bean sceneName beanName [--module=] [--boilerplate=]'
2937
+ usage: 'npm run vona :create:bean sceneName beanName -- [--module=] [--boilerplate=]'
2962
2938
  },
2963
2939
  options: {
2964
2940
  module: {
@@ -3005,7 +2981,7 @@ var createModule = {
3005
2981
  info: {
3006
2982
  version: '5.0.0',
3007
2983
  title: 'Cli: Create Module',
3008
- usage: 'vona :create:module moduleName [--suite=] [--force]'
2984
+ usage: 'npm run vona :create:module moduleName -- [--suite=] [--force]'
3009
2985
  },
3010
2986
  options: {
3011
2987
  suite: {
@@ -3042,7 +3018,7 @@ var createSuite = {
3042
3018
  info: {
3043
3019
  version: '5.0.0',
3044
3020
  title: 'Cli: Create Suite',
3045
- usage: 'vona :create:suite suiteName'
3021
+ usage: 'npm run vona :create:suite suiteName'
3046
3022
  },
3047
3023
  options: {},
3048
3024
  groups: {
@@ -3066,7 +3042,7 @@ var createTest = {
3066
3042
  info: {
3067
3043
  version: '5.0.0',
3068
3044
  title: 'Cli: Create Test',
3069
- usage: 'vona :create:test name [--module=]'
3045
+ usage: 'npm run vona :create:test name -- [--module=]'
3070
3046
  },
3071
3047
  options: {
3072
3048
  module: {
@@ -3119,7 +3095,7 @@ var initAppMonkey = {
3119
3095
  info: {
3120
3096
  version: '5.0.0',
3121
3097
  title: 'Cli: Init: App Monkey',
3122
- usage: 'vona :init:appMonkey'
3098
+ usage: 'npm run vona :init:appMonkey'
3123
3099
  }
3124
3100
  // options: null,
3125
3101
  // groups: null,
@@ -3130,7 +3106,7 @@ var initAsset = {
3130
3106
  info: {
3131
3107
  version: '5.0.0',
3132
3108
  title: 'Cli: Init: Asset Resources',
3133
- usage: 'vona :init:asset scene [--module=]'
3109
+ usage: 'npm run vona :init:asset scene -- [--module=]'
3134
3110
  },
3135
3111
  options: {
3136
3112
  module: {
@@ -3164,7 +3140,7 @@ var initConfig = {
3164
3140
  info: {
3165
3141
  version: '5.0.0',
3166
3142
  title: 'Cli: Init: Config',
3167
- usage: 'vona :init:config module'
3143
+ usage: 'npm run vona :init:config module'
3168
3144
  }
3169
3145
  // options: null,
3170
3146
  // groups: null,
@@ -3175,7 +3151,7 @@ var initConstant = {
3175
3151
  info: {
3176
3152
  version: '5.0.0',
3177
3153
  title: 'Cli: Init: Constant',
3178
- usage: 'vona :init:constant module'
3154
+ usage: 'npm run vona :init:constant module'
3179
3155
  }
3180
3156
  // options: null,
3181
3157
  // groups: null,
@@ -3186,7 +3162,7 @@ var initError = {
3186
3162
  info: {
3187
3163
  version: '5.0.0',
3188
3164
  title: 'Cli: Init: Error',
3189
- usage: 'vona :init:error module'
3165
+ usage: 'npm run vona :init:error module'
3190
3166
  }
3191
3167
  // options: null,
3192
3168
  // groups: null,
@@ -3197,7 +3173,7 @@ var initLib = {
3197
3173
  info: {
3198
3174
  version: '5.0.0',
3199
3175
  title: 'Cli: Init: Lib',
3200
- usage: 'vona :init:lib module'
3176
+ usage: 'npm run vona :init:lib module'
3201
3177
  }
3202
3178
  // options: null,
3203
3179
  // groups: null,
@@ -3208,7 +3184,7 @@ var initLocale = {
3208
3184
  info: {
3209
3185
  version: '5.0.0',
3210
3186
  title: 'Cli: Init: Locale',
3211
- usage: 'vona :init:locale module'
3187
+ usage: 'npm run vona :init:locale module'
3212
3188
  }
3213
3189
  // options: null,
3214
3190
  // groups: null,
@@ -3219,7 +3195,7 @@ var initMain = {
3219
3195
  info: {
3220
3196
  version: '5.0.0',
3221
3197
  title: 'Cli: Init: Main',
3222
- usage: 'vona :init:main module'
3198
+ usage: 'npm run vona :init:main module'
3223
3199
  }
3224
3200
  // options: null,
3225
3201
  // groups: null,
@@ -3230,7 +3206,7 @@ var initMonkey = {
3230
3206
  info: {
3231
3207
  version: '5.0.0',
3232
3208
  title: 'Cli: Init: Monkey',
3233
- usage: 'vona :init:monkey module'
3209
+ usage: 'npm run vona :init:monkey module'
3234
3210
  }
3235
3211
  // options: null,
3236
3212
  // groups: null,
@@ -3241,7 +3217,7 @@ var initStatic = {
3241
3217
  info: {
3242
3218
  version: '5.0.0',
3243
3219
  title: 'Cli: Init: Static Resources',
3244
- usage: 'vona :init:static module'
3220
+ usage: 'npm run vona :init:static module'
3245
3221
  }
3246
3222
  // options: null,
3247
3223
  // groups: null,
@@ -3252,7 +3228,7 @@ var initTypes = {
3252
3228
  info: {
3253
3229
  version: '5.0.0',
3254
3230
  title: 'Cli: Init: Types',
3255
- usage: 'vona :init:types module'
3231
+ usage: 'npm run vona :init:types module'
3256
3232
  }
3257
3233
  // options: null,
3258
3234
  // groups: null,
@@ -3263,7 +3239,7 @@ var toolsCrud = {
3263
3239
  info: {
3264
3240
  version: '5.0.0',
3265
3241
  title: 'Cli: Tools: Crud',
3266
- usage: 'vona :tools:crud resourceName [--module=]'
3242
+ usage: 'npm run vona :tools:crud resourceName -- [--module=]'
3267
3243
  },
3268
3244
  options: {
3269
3245
  module: {
@@ -3297,7 +3273,7 @@ var toolsCrudBasic = {
3297
3273
  info: {
3298
3274
  version: '5.0.0',
3299
3275
  title: 'Cli: Tools: Crud Basic',
3300
- usage: 'vona :tools:crudBasic resourceName [--module=]'
3276
+ usage: 'npm run vona :tools:crudBasic resourceName -- [--module=]'
3301
3277
  },
3302
3278
  options: {
3303
3279
  module: {
@@ -3331,7 +3307,7 @@ var toolsCrudStart = {
3331
3307
  info: {
3332
3308
  version: '5.0.0',
3333
3309
  title: 'Cli: Tools: Crud Start',
3334
- usage: 'vona :tools:crudStart resourceName [--module=]'
3310
+ usage: 'npm run vona :tools:crudStart resourceName -- [--module=]'
3335
3311
  },
3336
3312
  options: {
3337
3313
  module: {
@@ -3365,7 +3341,7 @@ var toolsDeps = {
3365
3341
  info: {
3366
3342
  version: '5.0.0',
3367
3343
  title: 'Cli: Tools: Deps',
3368
- usage: 'vona :tools:deps'
3344
+ usage: 'npm run vona :tools:deps'
3369
3345
  },
3370
3346
  options: {}
3371
3347
  };
@@ -3375,7 +3351,7 @@ var toolsMetadata = {
3375
3351
  info: {
3376
3352
  version: '5.0.0',
3377
3353
  title: 'Cli: Tools: Metadata',
3378
- usage: 'vona :tools:metadata module1 [module2] [--force]'
3354
+ usage: 'npm run vona :tools:metadata module1 [module2] -- [--force]'
3379
3355
  },
3380
3356
  options: {
3381
3357
  force: {
@@ -11,9 +11,12 @@ declare module '@cabloy/cli' {
11
11
  moduleResourceName: string;
12
12
  boilerplate: string;
13
13
  ssrSiteModuleName: string;
14
+ ssrSiteModuleNameWeb: string;
14
15
  ssrSiteOnionName: string;
16
+ ssrSiteOnionNameWeb: string;
15
17
  ssrSiteGroupName: string;
16
18
  ssrSiteRestNpm: string;
19
+ ssrSiteRestNpmWeb: string;
17
20
  }
18
21
  }
19
22
  export declare class CliCreateBean extends BeanCliBase {
@@ -9,7 +9,7 @@ export default metadataCustomSnippet({
9
9
  format: true,
10
10
  init: async ({ cli, argv, targetFile }) => {
11
11
  await catchError(() => {
12
- return cli.helper.invokeCli([':create:bean', 'meta', 'index', `--module=${argv.module}`, '--nometadata', '--noformat'], {
12
+ return cli.helper.invokeCli([':create:bean', 'meta', 'index', `--module=${argv.module}`, '--nometadata'], {
13
13
  cwd: argv.projectPath,
14
14
  });
15
15
  });
@@ -23,7 +23,6 @@ export default metadataCustomSnippet({
23
23
  'version',
24
24
  `--module=${argv.module}`,
25
25
  '--nometadata',
26
- '--noformat',
27
26
  ], {
28
27
  cwd: argv.projectPath,
29
28
  });
@@ -8,7 +8,7 @@ export default metadataCustomSnippet({
8
8
  language: 'plain',
9
9
  init: async ({ cli, argv, targetFile }) => {
10
10
  await catchError(() => {
11
- return cli.helper.invokeCli([':init:locale', argv.module, '--nometadata', '--noformat'], {
11
+ return cli.helper.invokeCli([':init:locale', argv.module, '--nometadata'], {
12
12
  cwd: argv.projectPath,
13
13
  });
14
14
  });
@@ -9,7 +9,7 @@ export default metadataCustomSnippet({
9
9
  format: true,
10
10
  init: async ({ cli, argv, targetFile }) => {
11
11
  await catchError(() => {
12
- return cli.helper.invokeCli([':create:bean', 'meta', 'index', `--module=${argv.module}`, '--nometadata', '--noformat'], {
12
+ return cli.helper.invokeCli([':create:bean', 'meta', 'index', `--module=${argv.module}`, '--nometadata'], {
13
13
  cwd: argv.projectPath,
14
14
  });
15
15
  });
@@ -23,7 +23,6 @@ export default metadataCustomSnippet({
23
23
  'version',
24
24
  `--module=${argv.module}`,
25
25
  '--nometadata',
26
- '--noformat',
27
26
  ], {
28
27
  cwd: argv.projectPath,
29
28
  });
@@ -8,7 +8,7 @@ export default metadataCustomSnippet({
8
8
  language: 'plain',
9
9
  init: async ({ cli, argv, targetFile }) => {
10
10
  await catchError(() => {
11
- return cli.helper.invokeCli([':init:locale', argv.module, '--nometadata', '--noformat'], {
11
+ return cli.helper.invokeCli([':init:locale', argv.module, '--nometadata'], {
12
12
  cwd: argv.projectPath,
13
13
  });
14
14
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vona-cli-set-api",
3
- "version": "1.1.101",
4
- "gitHead": "77e7d321e21482a08f743d441a017f3fb7be43cc",
3
+ "version": "1.1.103",
4
+ "gitHead": "7988acec56a1ade34ff3aaea78f152c72957e6af",
5
5
  "description": "vona cli-set-api",
6
6
  "keywords": [
7
7
  "framework",