bigotillo 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ #!/bin/sh
2
+ . "$(dirname "$0")/_/husky.sh"
3
+
4
+ npx --no -- commitlint --edit $1
@@ -0,0 +1,4 @@
1
+ #!/bin/sh
2
+ . "$(dirname "$0")/_/husky.sh"
3
+
4
+ npm run lint
@@ -0,0 +1 @@
1
+ module.exports = { extends: ['@commitlint/config-conventional'] };
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "bigotillo",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "A NPM package just for the lol",
5
5
  "bin": {
6
6
  "bigotillo": "./bin/index.js"
7
7
  },
8
8
  "scripts": {
9
9
  "dev": "nodemon bin",
10
- "lint": "eslint --ext .js ."
10
+ "lint": "eslint --ext .js .",
11
+ "prepare": "husky install"
11
12
  },
12
13
  "keywords": [
13
14
  "bigotillo"
@@ -22,7 +23,10 @@
22
23
  "colorette": "^2.0.16"
23
24
  },
24
25
  "devDependencies": {
26
+ "@commitlint/cli": "^15.0.0",
27
+ "@commitlint/config-conventional": "^15.0.0",
25
28
  "eslint": "^8.4.1",
29
+ "husky": "^7.0.4",
26
30
  "nodemon": "^2.0.15"
27
31
  }
28
32
  }