git-coco 0.7.0 → 0.7.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.
@@ -1673,7 +1673,7 @@ async function checkAndHandlePackageInstallation({ global = false, logger, }) {
1673
1673
  return;
1674
1674
  }
1675
1675
  logger.startSpinner(`Installing '${packageName}' in project...`, { color: 'blue' });
1676
- await installNpmPackage({ name: packageName, cwd: projectRoot });
1676
+ await installNpmPackage({ name: packageName, cwd: projectRoot, flags: ['--save-dev'] });
1677
1677
  logger.stopSpinner(`Installed '${packageName}' in project`);
1678
1678
  }
1679
1679
  catch (error) {
package/dist/index.js CHANGED
@@ -1694,7 +1694,7 @@ async function checkAndHandlePackageInstallation({ global = false, logger, }) {
1694
1694
  return;
1695
1695
  }
1696
1696
  logger.startSpinner(`Installing '${packageName}' in project...`, { color: 'blue' });
1697
- await installNpmPackage({ name: packageName, cwd: projectRoot });
1697
+ await installNpmPackage({ name: packageName, cwd: projectRoot, flags: ['--save-dev'] });
1698
1698
  logger.stopSpinner(`Installed '${packageName}' in project`);
1699
1699
  }
1700
1700
  catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-coco",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "description": "zero-effort git commits with coco.",
5
5
  "author": "gfargo <ghfargo@gmail.com>",
6
6
  "license": "MIT",
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "devDependencies": {
44
44
  "@rollup/plugin-commonjs": "^25.0.2",
45
- "@rollup/plugin-eslint": "^9.0.4",
45
+ "@rollup/plugin-eslint": "^9.0.5",
46
46
  "@rollup/plugin-json": "^6.0.0",
47
47
  "@rollup/plugin-node-resolve": "^15.1.0",
48
48
  "@types/async": "^3.2.20",
@@ -54,13 +54,13 @@
54
54
  "@types/inquirer": "^9.0.3",
55
55
  "@types/jest": "^29.5.10",
56
56
  "@types/yargs": "^17.0.24",
57
- "@typescript-eslint/eslint-plugin": "^5.61.0",
58
- "@typescript-eslint/parser": "^5.61.0",
59
- "eslint": "^8.42.0",
57
+ "@typescript-eslint/eslint-plugin": "^6.13.1",
58
+ "@typescript-eslint/parser": "^6.13.1",
59
+ "eslint": "^8.54.0",
60
60
  "eslint-formatter-pretty": "^6.0.0",
61
61
  "jest": "^29.5.0",
62
62
  "jest-mock": "^29.5.0",
63
- "release-it": "^16.1.0",
63
+ "release-it": "^17.0.0",
64
64
  "rimraf": "^5.0.1",
65
65
  "rollup": "^3.26.1",
66
66
  "rollup-plugin-banner2": "^1.2.2",