@fatsolutions/ganchos 1.0.0 → 1.0.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.
@@ -12,5 +12,5 @@ export function getInstallCommand(deps) {
12
12
  const packages = Object.entries(deps)
13
13
  .map(([name, version]) => `${name}@${version}`)
14
14
  .join(' ');
15
- return `pnpm add -D ${packages}`;
15
+ return `pnpm add -D -w --ignore-scripts ${packages}`;
16
16
  }
@@ -14,5 +14,5 @@ export function getInstallCommand(deps: Record<string, string>): string {
14
14
  const packages = Object.entries(deps)
15
15
  .map(([name, version]) => `${name}@${version}`)
16
16
  .join(' ');
17
- return `pnpm add -D ${packages}`;
17
+ return `pnpm add -D -w --ignore-scripts ${packages}`;
18
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fatsolutions/ganchos",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Git Hook Manager for Polyglot Monorepos, developed in house by FatSolutions",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",