vona-cli-set-api 1.1.101 → 1.1.102

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,8 +1048,6 @@ 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';
1046
1053
  argv.ssrSiteOnionName = fs.existsSync(path.join(argv.projectPath, 'src/suite/cabloy-start')) ? 'start-siteadmin:admin' : 'basic-siteadmin:admin';
@@ -1144,8 +1151,6 @@ class CliCreateModule extends BeanCliBase {
1144
1151
  } = this.context;
1145
1152
  // super
1146
1153
  await super.execute();
1147
- // noformat
1148
- // argv.noformat = true;
1149
1154
  // suite name/info
1150
1155
  const suiteName = argv.suite;
1151
1156
  if (suiteName) {
@@ -1217,8 +1222,6 @@ class CliCreateSuite extends BeanCliBase {
1217
1222
  } = this.context;
1218
1223
  // super
1219
1224
  await super.execute();
1220
- // noformat
1221
- // argv.noformat = true;
1222
1225
  // nameMeta
1223
1226
  const nameMeta = this.helper.parseNameMeta(argv.name);
1224
1227
  const suiteDir = nameMeta.directory || 'suite';
@@ -1251,8 +1254,6 @@ class CliCreateTest extends BeanCliBase {
1251
1254
  } = this.context;
1252
1255
  // super
1253
1256
  await super.execute();
1254
- // noformat
1255
- // argv.noformat = true;
1256
1257
  // module name/info
1257
1258
  const moduleName = argv.module;
1258
1259
  argv.moduleInfo = this.helper.parseModuleInfo(moduleName);
@@ -1397,8 +1398,6 @@ class CliInitAppMonkey extends BeanCliBase {
1397
1398
  } = this.context;
1398
1399
  // super
1399
1400
  await super.execute();
1400
- // noformat
1401
- // argv.noformat = true;
1402
1401
  // target dir
1403
1402
  const targetDir = path.join(argv.projectPath, 'src/backend/config');
1404
1403
  const monkeyFile = path.join(targetDir, 'monkey.ts');
@@ -1422,8 +1421,6 @@ class CliInitAsset extends BeanCliBase {
1422
1421
  } = this.context;
1423
1422
  // super
1424
1423
  await super.execute();
1425
- // noformat
1426
- // argv.noformat = true;
1427
1424
  // module name/info
1428
1425
  const moduleName = argv.module;
1429
1426
  argv.moduleInfo = this.helper.parseModuleInfo(moduleName);
@@ -1452,8 +1449,6 @@ class CliInitConfig extends BeanCliBase {
1452
1449
  } = this.context;
1453
1450
  // super
1454
1451
  await super.execute();
1455
- // noformat
1456
- // argv.noformat = true;
1457
1452
  // module name/info
1458
1453
  const moduleName = argv._[0];
1459
1454
  if (!moduleName) return;
@@ -1492,8 +1487,6 @@ class CliInitConstant extends BeanCliBase {
1492
1487
  } = this.context;
1493
1488
  // super
1494
1489
  await super.execute();
1495
- // noformat
1496
- // argv.noformat = true;
1497
1490
  // module name/info
1498
1491
  const moduleName = argv._[0];
1499
1492
  if (!moduleName) return;
@@ -1532,8 +1525,6 @@ class CliInitError extends BeanCliBase {
1532
1525
  } = this.context;
1533
1526
  // super
1534
1527
  await super.execute();
1535
- // noformat
1536
- // argv.noformat = true;
1537
1528
  // module name/info
1538
1529
  const moduleName = argv._[0];
1539
1530
  if (!moduleName) return;
@@ -1583,8 +1574,6 @@ class CliInitLib extends BeanCliBase {
1583
1574
  } = this.context;
1584
1575
  // super
1585
1576
  await super.execute();
1586
- // noformat
1587
- // argv.noformat = true;
1588
1577
  // module name/info
1589
1578
  const moduleName = argv._[0];
1590
1579
  if (!moduleName) return;
@@ -1623,8 +1612,6 @@ class CliInitLocale extends BeanCliBase {
1623
1612
  } = this.context;
1624
1613
  // super
1625
1614
  await super.execute();
1626
- // noformat
1627
- // argv.noformat = true;
1628
1615
  // module name/info
1629
1616
  const moduleName = argv._[0];
1630
1617
  if (!moduleName) return;
@@ -1663,8 +1650,6 @@ class CliInitMain extends BeanCliBase {
1663
1650
  } = this.context;
1664
1651
  // super
1665
1652
  await super.execute();
1666
- // noformat
1667
- // argv.noformat = true;
1668
1653
  // module name/info
1669
1654
  const moduleName = argv._[0];
1670
1655
  if (!moduleName) return;
@@ -1703,8 +1688,6 @@ class CliInitMonkey extends BeanCliBase {
1703
1688
  } = this.context;
1704
1689
  // super
1705
1690
  await super.execute();
1706
- // noformat
1707
- // argv.noformat = true;
1708
1691
  // module name/info
1709
1692
  const moduleName = argv._[0];
1710
1693
  if (!moduleName) return;
@@ -1767,8 +1750,6 @@ class CliInitStatic extends BeanCliBase {
1767
1750
  } = this.context;
1768
1751
  // super
1769
1752
  await super.execute();
1770
- // noformat
1771
- // argv.noformat = true;
1772
1753
  // module name/info
1773
1754
  const moduleName = argv._[0];
1774
1755
  if (!moduleName) return;
@@ -1805,8 +1786,6 @@ class CliInitTypes extends BeanCliBase {
1805
1786
  } = this.context;
1806
1787
  // super
1807
1788
  await super.execute();
1808
- // noformat
1809
- // argv.noformat = true;
1810
1789
  // module name/info
1811
1790
  const moduleName = argv._[0];
1812
1791
  if (!moduleName) return;
@@ -1845,8 +1824,6 @@ class CliToolsCrud extends BeanCliBase {
1845
1824
  } = this.context;
1846
1825
  // super
1847
1826
  await super.execute();
1848
- // noformat
1849
- // argv.noformat = true;
1850
1827
  // ssrSiteModuleName
1851
1828
  const isCabloyStart = fs.existsSync(path.join(argv.projectPath, '__CABLOY_START__'));
1852
1829
  argv.ssrSiteModuleName = isCabloyStart ? 'vona-module-start-siteadmin' : 'vona-module-basic-siteadmin';
@@ -1898,8 +1875,6 @@ class CliToolsCrudBasic extends BeanCliBase {
1898
1875
  } = this.context;
1899
1876
  // super
1900
1877
  await super.execute();
1901
- // noformat
1902
- // argv.noformat = true;
1903
1878
  // module name/info
1904
1879
  const moduleName = argv.module;
1905
1880
  argv.moduleInfo = this.helper.parseModuleInfo(moduleName);
@@ -1944,8 +1919,6 @@ class CliToolsCrudStart extends BeanCliBase {
1944
1919
  } = this.context;
1945
1920
  // super
1946
1921
  await super.execute();
1947
- // noformat
1948
- // argv.noformat = true;
1949
1922
  // module name/info
1950
1923
  const moduleName = argv.module;
1951
1924
  argv.moduleInfo = this.helper.parseModuleInfo(moduleName);
@@ -2805,7 +2778,7 @@ var binBuild = {
2805
2778
  info: {
2806
2779
  version: '5.0.0',
2807
2780
  title: 'Cli: Tools: Bin',
2808
- usage: 'vona :bin:build [--workers=] [--flavor=] [--sourcemap=]'
2781
+ usage: 'npm run vona :bin:build -- [--workers=] [--flavor=] [--sourcemap=]'
2809
2782
  },
2810
2783
  options: {
2811
2784
  workers: {
@@ -2824,7 +2797,7 @@ var binBuildGeneral = {
2824
2797
  info: {
2825
2798
  version: '5.0.0',
2826
2799
  title: 'Cli: Tools: Bin',
2827
- usage: 'vona :bin:buildGeneral [--minify] [--sourcemap]'
2800
+ usage: 'npm run vona :bin:buildGeneral -- [--minify] [--sourcemap]'
2828
2801
  },
2829
2802
  options: {
2830
2803
  minify: {
@@ -2843,7 +2816,7 @@ var binBuildModule = {
2843
2816
  info: {
2844
2817
  version: '5.0.0',
2845
2818
  title: 'Cli: Tools: Bin',
2846
- usage: 'vona :bin:buildModule [--minify] [--sourcemap]'
2819
+ usage: 'npm run vona :bin:buildModule -- [--minify] [--sourcemap]'
2847
2820
  },
2848
2821
  options: {
2849
2822
  minify: {
@@ -2862,7 +2835,7 @@ var binDbReset = {
2862
2835
  info: {
2863
2836
  version: '5.0.0',
2864
2837
  title: 'Cli: Bin: DbReset',
2865
- usage: 'vona :bin:dbReset [--flavor=]'
2838
+ usage: 'npm run vona :bin:dbReset -- [--flavor=]'
2866
2839
  },
2867
2840
  options: {
2868
2841
  flavor: {
@@ -2877,7 +2850,7 @@ var binDev = {
2877
2850
  info: {
2878
2851
  version: '5.0.0',
2879
2852
  title: 'Cli: Bin: Dev',
2880
- usage: 'vona :bin:dev [--workers=] [--flavor=]'
2853
+ usage: 'npm run vona :bin:dev -- [--workers=] [--flavor=]'
2881
2854
  },
2882
2855
  options: {
2883
2856
  workers: {
@@ -2896,7 +2869,7 @@ var binPlay = {
2896
2869
  info: {
2897
2870
  version: '5.0.0',
2898
2871
  title: 'Cli: Bin: Play',
2899
- usage: 'vona :bin:play [index.ts] [--flavor=] [--retainRuntime=] [--attach]'
2872
+ usage: 'npm run vona :bin:play [index.ts] -- [--flavor=] [--retainRuntime=] [--attach]'
2900
2873
  },
2901
2874
  options: {
2902
2875
  mode: {
@@ -2924,7 +2897,7 @@ var binTest = {
2924
2897
  info: {
2925
2898
  version: '5.0.0',
2926
2899
  title: 'Cli: Bin: Test',
2927
- usage: 'vona :bin:test [--coverage=] [--flavor=]'
2900
+ usage: 'npm run vona :bin:test -- [--coverage=] [--flavor=]'
2928
2901
  },
2929
2902
  options: {
2930
2903
  coverage: {
@@ -2943,7 +2916,7 @@ var binTsc = {
2943
2916
  info: {
2944
2917
  version: '5.0.0',
2945
2918
  title: 'Cli: Bin: Tsc',
2946
- usage: 'vona :bin:tsc [--force]'
2919
+ usage: 'npm run vona :bin:tsc -- [--force]'
2947
2920
  },
2948
2921
  options: {
2949
2922
  force: {
@@ -2958,7 +2931,7 @@ var createBean = {
2958
2931
  info: {
2959
2932
  version: '5.0.0',
2960
2933
  title: 'Cli: Create Bean',
2961
- usage: 'vona :create:bean sceneName beanName [--module=] [--boilerplate=]'
2934
+ usage: 'npm run vona :create:bean sceneName beanName -- [--module=] [--boilerplate=]'
2962
2935
  },
2963
2936
  options: {
2964
2937
  module: {
@@ -3005,7 +2978,7 @@ var createModule = {
3005
2978
  info: {
3006
2979
  version: '5.0.0',
3007
2980
  title: 'Cli: Create Module',
3008
- usage: 'vona :create:module moduleName [--suite=] [--force]'
2981
+ usage: 'npm run vona :create:module moduleName -- [--suite=] [--force]'
3009
2982
  },
3010
2983
  options: {
3011
2984
  suite: {
@@ -3042,7 +3015,7 @@ var createSuite = {
3042
3015
  info: {
3043
3016
  version: '5.0.0',
3044
3017
  title: 'Cli: Create Suite',
3045
- usage: 'vona :create:suite suiteName'
3018
+ usage: 'npm run vona :create:suite suiteName'
3046
3019
  },
3047
3020
  options: {},
3048
3021
  groups: {
@@ -3066,7 +3039,7 @@ var createTest = {
3066
3039
  info: {
3067
3040
  version: '5.0.0',
3068
3041
  title: 'Cli: Create Test',
3069
- usage: 'vona :create:test name [--module=]'
3042
+ usage: 'npm run vona :create:test name -- [--module=]'
3070
3043
  },
3071
3044
  options: {
3072
3045
  module: {
@@ -3119,7 +3092,7 @@ var initAppMonkey = {
3119
3092
  info: {
3120
3093
  version: '5.0.0',
3121
3094
  title: 'Cli: Init: App Monkey',
3122
- usage: 'vona :init:appMonkey'
3095
+ usage: 'npm run vona :init:appMonkey'
3123
3096
  }
3124
3097
  // options: null,
3125
3098
  // groups: null,
@@ -3130,7 +3103,7 @@ var initAsset = {
3130
3103
  info: {
3131
3104
  version: '5.0.0',
3132
3105
  title: 'Cli: Init: Asset Resources',
3133
- usage: 'vona :init:asset scene [--module=]'
3106
+ usage: 'npm run vona :init:asset scene -- [--module=]'
3134
3107
  },
3135
3108
  options: {
3136
3109
  module: {
@@ -3164,7 +3137,7 @@ var initConfig = {
3164
3137
  info: {
3165
3138
  version: '5.0.0',
3166
3139
  title: 'Cli: Init: Config',
3167
- usage: 'vona :init:config module'
3140
+ usage: 'npm run vona :init:config module'
3168
3141
  }
3169
3142
  // options: null,
3170
3143
  // groups: null,
@@ -3175,7 +3148,7 @@ var initConstant = {
3175
3148
  info: {
3176
3149
  version: '5.0.0',
3177
3150
  title: 'Cli: Init: Constant',
3178
- usage: 'vona :init:constant module'
3151
+ usage: 'npm run vona :init:constant module'
3179
3152
  }
3180
3153
  // options: null,
3181
3154
  // groups: null,
@@ -3186,7 +3159,7 @@ var initError = {
3186
3159
  info: {
3187
3160
  version: '5.0.0',
3188
3161
  title: 'Cli: Init: Error',
3189
- usage: 'vona :init:error module'
3162
+ usage: 'npm run vona :init:error module'
3190
3163
  }
3191
3164
  // options: null,
3192
3165
  // groups: null,
@@ -3197,7 +3170,7 @@ var initLib = {
3197
3170
  info: {
3198
3171
  version: '5.0.0',
3199
3172
  title: 'Cli: Init: Lib',
3200
- usage: 'vona :init:lib module'
3173
+ usage: 'npm run vona :init:lib module'
3201
3174
  }
3202
3175
  // options: null,
3203
3176
  // groups: null,
@@ -3208,7 +3181,7 @@ var initLocale = {
3208
3181
  info: {
3209
3182
  version: '5.0.0',
3210
3183
  title: 'Cli: Init: Locale',
3211
- usage: 'vona :init:locale module'
3184
+ usage: 'npm run vona :init:locale module'
3212
3185
  }
3213
3186
  // options: null,
3214
3187
  // groups: null,
@@ -3219,7 +3192,7 @@ var initMain = {
3219
3192
  info: {
3220
3193
  version: '5.0.0',
3221
3194
  title: 'Cli: Init: Main',
3222
- usage: 'vona :init:main module'
3195
+ usage: 'npm run vona :init:main module'
3223
3196
  }
3224
3197
  // options: null,
3225
3198
  // groups: null,
@@ -3230,7 +3203,7 @@ var initMonkey = {
3230
3203
  info: {
3231
3204
  version: '5.0.0',
3232
3205
  title: 'Cli: Init: Monkey',
3233
- usage: 'vona :init:monkey module'
3206
+ usage: 'npm run vona :init:monkey module'
3234
3207
  }
3235
3208
  // options: null,
3236
3209
  // groups: null,
@@ -3241,7 +3214,7 @@ var initStatic = {
3241
3214
  info: {
3242
3215
  version: '5.0.0',
3243
3216
  title: 'Cli: Init: Static Resources',
3244
- usage: 'vona :init:static module'
3217
+ usage: 'npm run vona :init:static module'
3245
3218
  }
3246
3219
  // options: null,
3247
3220
  // groups: null,
@@ -3252,7 +3225,7 @@ var initTypes = {
3252
3225
  info: {
3253
3226
  version: '5.0.0',
3254
3227
  title: 'Cli: Init: Types',
3255
- usage: 'vona :init:types module'
3228
+ usage: 'npm run vona :init:types module'
3256
3229
  }
3257
3230
  // options: null,
3258
3231
  // groups: null,
@@ -3263,7 +3236,7 @@ var toolsCrud = {
3263
3236
  info: {
3264
3237
  version: '5.0.0',
3265
3238
  title: 'Cli: Tools: Crud',
3266
- usage: 'vona :tools:crud resourceName [--module=]'
3239
+ usage: 'npm run vona :tools:crud resourceName -- [--module=]'
3267
3240
  },
3268
3241
  options: {
3269
3242
  module: {
@@ -3297,7 +3270,7 @@ var toolsCrudBasic = {
3297
3270
  info: {
3298
3271
  version: '5.0.0',
3299
3272
  title: 'Cli: Tools: Crud Basic',
3300
- usage: 'vona :tools:crudBasic resourceName [--module=]'
3273
+ usage: 'npm run vona :tools:crudBasic resourceName -- [--module=]'
3301
3274
  },
3302
3275
  options: {
3303
3276
  module: {
@@ -3331,7 +3304,7 @@ var toolsCrudStart = {
3331
3304
  info: {
3332
3305
  version: '5.0.0',
3333
3306
  title: 'Cli: Tools: Crud Start',
3334
- usage: 'vona :tools:crudStart resourceName [--module=]'
3307
+ usage: 'npm run vona :tools:crudStart resourceName -- [--module=]'
3335
3308
  },
3336
3309
  options: {
3337
3310
  module: {
@@ -3365,7 +3338,7 @@ var toolsDeps = {
3365
3338
  info: {
3366
3339
  version: '5.0.0',
3367
3340
  title: 'Cli: Tools: Deps',
3368
- usage: 'vona :tools:deps'
3341
+ usage: 'npm run vona :tools:deps'
3369
3342
  },
3370
3343
  options: {}
3371
3344
  };
@@ -3375,7 +3348,7 @@ var toolsMetadata = {
3375
3348
  info: {
3376
3349
  version: '5.0.0',
3377
3350
  title: 'Cli: Tools: Metadata',
3378
- usage: 'vona :tools:metadata module1 [module2] [--force]'
3351
+ usage: 'npm run vona :tools:metadata module1 [module2] -- [--force]'
3379
3352
  },
3380
3353
  options: {
3381
3354
  force: {
@@ -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.102",
4
+ "gitHead": "4b0a319ce45d4154ed050a046185ddaa7667da87",
5
5
  "description": "vona cli-set-api",
6
6
  "keywords": [
7
7
  "framework",