Skip to content

Commit

Permalink
fix(package): bump all packages versions
Browse files Browse the repository at this point in the history
chore(package): update jest to version 21.0.0

chore(package): update @types/jest to version 21.1.0

chore(package): update ts-jest to version 22.0.0

Closes #5

chore(package): update lint-staged to version 6.0.0

Closes #7

chore(package): update jest to version 22.0.3

Closes #8

chore(package): update semantic-release to version 11.0.2
  • Loading branch information
greenkeeper[bot] authored and julon committed Jan 17, 2018
1 parent 65bdbbf commit a71fd65
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 18 deletions.
11 changes: 4 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
language: node_js
cache:
directories:
- node_modules
- ~/.npm
notifications:
email: false
node_js:
- '7'
- '6'
- '4'
before_script:
- npm prune
- '9'
- '8'
after_success:
- npm run semantic-release
- npm run travis-deploy-once "npm run semantic-release"
branches:
except:
- /^v\d+\.\d+\.\d+$/
42 changes: 32 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,35 @@
"predocs": "rm -rf docs/",
"docs": "esdoc -c .esdoc.json",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"semantic-release": "semantic-release",
"prettier": "prettier",
"prettier-write": "npm run prettier -- --parser typescript --no-semi --trailing-comma es5 --write --print-width 120",
"prettier-project": "npm run prettier-write -- 'src/**/*.{ts,tsx}'",
"lint": "tslint \"src/**/*.ts\""
"lint": "tslint \"src/**/*.ts\"",
"travis-deploy-once": "travis-deploy-once"
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^1.0.0",
"@semantic-release/git": "^2.0.2",
"@semantic-release/github": "^3.0.1",
"@semantic-release/npm": "^2.6.4",
"@slack/client": "^3.10.0",
"@types/jest": "^20.0.6",
"@types/jest": "^21.1.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"danger": "*",
"danger": "^3.0.5",
"husky": "^0.14.3",
"jest": "^20.0.1",
"lint-staged": "^4.0.2",
"prettier": "^1.3.1",
"semantic-release": "^6.3.6",
"ts-jest": "^20.0.0",
"tslint": "^5.4.3",
"jest": "^22.0.3",
"lint-staged": "^6.0.0",
"prettier": "^1.10.2",
"semantic-release": "^12.2.2",
"travis-deploy-once": "^4.3.1",
"ts-jest": "^22.0.0",
"tslint": "^5.9.1",
"typescript": "^2.3.2",
"validate-commit-msg": "^2.12.1"
},
Expand Down Expand Up @@ -85,5 +91,21 @@
"\\.snap$",
"<rootDir>/node_modules/"
]
},
"dependencies": {},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"getLastRelease": "@semantic-release/npm",
"publish": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export default function slack(options: SlackOptions) {
}

export function createMessage(pr: GitHubPRDSL, resultLists: DangerResults, options: SlackOptions): SlackMessage {

const msg: SlackMessage = {
text: "",
username: options.username || "DangerJS",
Expand Down

0 comments on commit a71fd65

Please sign in to comment.