@mateoserrano/simple-config 1.1.5 → 1.1.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/constants.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mateoserrano/simple-config",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "description": "Initialize ESLint, Prettier, Husky and lint-staged for modern TypeScript projects",
package/src/constants.js CHANGED
@@ -64,5 +64,5 @@ export const devDepFiles = {
64
64
  }
65
65
  export const addHuskyPrepare = 'npm pkg set scripts.prepare="husky init"'
66
66
  export const installCmd = (installNames) => `npm install -D ${installNames.join(' ')} --save-exact`
67
- export const prepareHuskyCommand = 'npx prepare'
67
+ export const prepareHuskyCommand = 'npm run prepare'
68
68
  export const setupHuskyCommand = 'npx husky add .husky/pre-commit "npx lint-staged"'