@soybeanjs/cli 0.5.8 → 0.6.1

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
@@ -18,7 +18,7 @@ const enquirer__default = /*#__PURE__*/_interopDefaultCompat(enquirer);
18
18
  const path__default = /*#__PURE__*/_interopDefaultCompat(path);
19
19
  const versionBump__default = /*#__PURE__*/_interopDefaultCompat(versionBump);
20
20
 
21
- const version = "0.5.8";
21
+ const version = "0.6.1";
22
22
 
23
23
  async function execCommand(cmd, args, options) {
24
24
  const { execa } = await import('execa');
@@ -77,7 +77,7 @@ async function gitCommitVerify() {
77
77
  }
78
78
 
79
79
  async function cleanup(paths) {
80
- await rimraf.rimraf(paths);
80
+ await rimraf.rimraf(paths, { glob: true });
81
81
  }
82
82
 
83
83
  async function initSimpleGitHooks(cwd = process.cwd()) {
package/dist/index.mjs CHANGED
@@ -9,7 +9,7 @@ import { generateTotalChangelog, generateChangelog } from '@soybeanjs/changelog'
9
9
  import versionBump from 'bumpp';
10
10
  import { loadConfig } from 'c12';
11
11
 
12
- const version = "0.5.8";
12
+ const version = "0.6.1";
13
13
 
14
14
  async function execCommand(cmd, args, options) {
15
15
  const { execa } = await import('execa');
@@ -68,7 +68,7 @@ async function gitCommitVerify() {
68
68
  }
69
69
 
70
70
  async function cleanup(paths) {
71
- await rimraf(paths);
71
+ await rimraf(paths, { glob: true });
72
72
  }
73
73
 
74
74
  async function initSimpleGitHooks(cwd = process.cwd()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soybeanjs/cli",
3
- "version": "0.5.8",
3
+ "version": "0.6.1",
4
4
  "description": "SoybeanJS's command line tools",
5
5
  "author": {
6
6
  "name": "Soybean",
@@ -36,7 +36,7 @@
36
36
  "dist"
37
37
  ],
38
38
  "dependencies": {
39
- "@soybeanjs/changelog": "0.0.2",
39
+ "@soybeanjs/changelog": "0.0.3",
40
40
  "bumpp": "9.1.1",
41
41
  "c12": "1.4.1",
42
42
  "cac": "6.7.14",