Skip to content

Commit

Permalink
Merge pull request #14 from marcol/1.6.3
Browse files Browse the repository at this point in the history
1.6.3
  • Loading branch information
marcol committed Feb 19, 2021
2 parents db30bae + d42b7f3 commit b876b2e
Show file tree
Hide file tree
Showing 6 changed files with 95 additions and 157 deletions.
1 change: 1 addition & 0 deletions .husky/.gitignore
@@ -0,0 +1 @@
_
1 change: 1 addition & 0 deletions .husky/commit-msg
@@ -0,0 +1 @@
yarn commitlint --edit $1
1 change: 1 addition & 0 deletions .husky/pre-commit
@@ -0,0 +1 @@
yarn lint
1 change: 1 addition & 0 deletions .husky/pre-push
@@ -0,0 +1 @@
yarn test
22 changes: 8 additions & 14 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "sugar-chalk",
"version": "1.6.2",
"version": "1.6.3",
"description": "Sugar syntax for chalk",
"keywords": [
"chalk",
Expand All @@ -24,7 +24,8 @@
"lint:js": "eslint .",
"lint:md": "remark .",
"test": "jest",
"sandbox": "node sandbox.js"
"sandbox": "node sandbox.js",
"postinstall": "husky install"
},
"dependencies": {
"chalk": "^4.1.0"
Expand All @@ -33,27 +34,20 @@
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-markdown": "^2.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.5",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.0.9",
"jest": "^26.6.3",
"remark-cli": "^9.0.0",
"remark-lint": "^8.0.0",
"remark-preset-lint-markdown-style-guide": "^4.0.0"
},
"husky": {
"hooks": {
"pre-push": "yarn test",
"pre-commit": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}

0 comments on commit b876b2e

Please sign in to comment.