create-pkgbld 1.4.1 → 1.4.2

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.
package/dist/index.cjs CHANGED
@@ -31,9 +31,9 @@ async function execute() {
31
31
  '[package name]'
32
32
  ],
33
33
  flags: {
34
- quite: {
34
+ quiet: {
35
35
  type: Boolean,
36
- description: 'Quite mode',
36
+ description: 'Quiet mode',
37
37
  default: false
38
38
  }
39
39
  }
@@ -49,7 +49,7 @@ async function execute() {
49
49
  options.push(...await getGitOptions(targetDir));
50
50
  options.push(...getPkgbldOptions(pkg.pkg));
51
51
  const state = getOptionsValue(options);
52
- if (!args.flags.quite) {
52
+ if (!args.flags.quiet) {
53
53
  for (;;) {
54
54
  const topLevelAction = await prompts({
55
55
  type: 'select',
package/dist/index.mjs CHANGED
@@ -28,9 +28,9 @@ async function execute() {
28
28
  '[package name]'
29
29
  ],
30
30
  flags: {
31
- quite: {
31
+ quiet: {
32
32
  type: Boolean,
33
- description: 'Quite mode',
33
+ description: 'Quiet mode',
34
34
  default: false
35
35
  }
36
36
  }
@@ -46,7 +46,7 @@ async function execute() {
46
46
  options.push(...await getGitOptions(targetDir));
47
47
  options.push(...getPkgbldOptions(pkg.pkg));
48
48
  const state = getOptionsValue(options);
49
- if (!args.flags.quite) {
49
+ if (!args.flags.quiet) {
50
50
  for (;;) {
51
51
  const topLevelAction = await prompts({
52
52
  type: 'select',
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.4.1",
2
+ "version": "1.4.2",
3
3
  "name": "create-pkgbld",
4
4
  "license": "MIT",
5
5
  "author": "Konstantin Shutkin",