Skip to content

Commit

Permalink
fix(ci): update dep
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderBabel committed Aug 6, 2020
1 parent cc8cdec commit 9582da5
Show file tree
Hide file tree
Showing 4 changed files with 2,029 additions and 2,447 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: yarn

- name: eslint check
run: yarn eslint
run: yarn eslint .

- name: Release
run: yarn semantic-release
Expand Down
2 changes: 1 addition & 1 deletion lib/verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ module.exports = async (pluginConfig, { logger }) => {
}

if (pluginConfig.buildArgs && !(pluginConfig.buildArgs instanceof Array)) {
throw new Error(`plugin config contains invalid buildArgs!`)
throw new Error('plugin config contains invalid buildArgs!')
}
}
66 changes: 33 additions & 33 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,31 +31,31 @@
"homepage": "https://github.com/alexanderbabel/semantic-release-docker#readme",
"dependencies": {
"@semantic-release/error": "^2.2.0",
"execa": "^1.0.0",
"execa": "4.0.3",
"semver": "^7.2.1"
},
"devDependencies": {
"@commitlint/cli": "7.4.0",
"@commitlint/config-conventional": "7.3.1",
"@commitlint/prompt-cli": "7.3.1",
"@semantic-release/changelog": "3.0.2",
"@semantic-release/git": "7.0.8",
"@semantic-release/github": "5.2.10",
"@semantic-release/npm": "5.1.4",
"eslint": "5.12.1",
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "9.1.1",
"@commitlint/prompt-cli": "9.1.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.0.7",
"@semantic-release/npm": "7.0.5",
"eslint": "7.6.0",
"eslint-config-jsdoc-strict": "2.0.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsdoc": "4.1.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsdoc": "30.2.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-standard": "4.0.0",
"husky": "1.3.1",
"lint-staged": "8.1.1",
"npm-github-config": "2.0.0",
"prettier-standard": "9.1.1",
"semantic-release": "15.13.3"
"eslint-plugin-standard": "4.0.1",
"husky": "4.2.5",
"lint-staged": "10.2.11",
"npm-github-config": "2.0.1",
"prettier-standard": "16.4.1",
"semantic-release": "17.1.1"
},
"peerDependencies": {
"semantic-release": "^15.9.0"
Expand All @@ -75,7 +75,9 @@
"rules": {
"no-console": "error",
"require-await": "error",
"jsdoc/require-example": "off"
"jsdoc/require-example": "off",
"jsdoc/valid-types": "off",
"jsdoc/check-types": "off"
}
},
"husky": {
Expand All @@ -85,18 +87,16 @@
}
},
"lint-staged": {
"linters": {
"index.js": [
"eslint --fix",
"prettier-standard",
"git add"
],
"lib/**/*.js": [
"eslint --fix",
"prettier-standard",
"git add"
]
}
"index.js": [
"eslint --fix",
"prettier-standard",
"git add"
],
"lib/**/*.js": [
"eslint --fix",
"prettier-standard",
"git add"
]
},
"commitlint": {
"extends": [
Expand Down
Loading

0 comments on commit 9582da5

Please sign in to comment.