Skip to content

Commit

Permalink
Merge pull request #131 from marionebl/fix/fixup-release-scripts
Browse files Browse the repository at this point in the history
fix(build): tweaks to release-pull-request
  • Loading branch information
marionebl committed Nov 30, 2015
2 parents 350e8db + a55d1b9 commit cbddc44
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
"commitmsg": "$npm_package_config_jogwheel_when_ci && $npm_package_config_jogwheel_validate_commit || $npm_package_config_jogwheel_validate_commit \".git/COMMIT_EDITMSG\"",
"env": "env",
"binaries": "ls node_modules/.bin/",
"prepublish": "not-in-install && ($npm_package_config_jogwheel_when_ci --leader --trusted --master && (npm run build && npm run release-pull-request) || echo \"\") || echo \"\"",
"semantic-release": "(semantic-release pre && npm publish && semantic-release post) && GH_PAGES_ARCHIVE=\"true\" npm run pages || GH_PAGES_ARCHIVE=\"false\" npm run pages",
"semantic-release": "(semantic-release pre && npm run semantic-release-pull-request && npm publish && semantic-release post) && GH_PAGES_ARCHIVE=\"true\" npm run pages || GH_PAGES_ARCHIVE=\"false\" npm run pages",
"pages": "$npm_package_config_jogwheel_when_ci --leader --trusted --master --dirty=public/**/* && $npm_package_config_jogwheel_pages_update --pull-request || echo ''",
"release-pull-request": "node distribution/scripts/release-pull-request.js"
"release-pull-request": "node distribution/scripts/release-pull-request.js",
"semantic-release-pull-request": "not-in-install && ($npm_package_config_jogwheel_when_ci --leader --trusted --master && (npm run build && npm run release-pull-request))"
},
"homepage": "https://github.com/marionebl/jogwheel#readme",
"repository": {
Expand Down
1 change: 1 addition & 0 deletions source/scripts/release-pull-request.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'babel-polyfill';
import denodeify from 'denodeify';
import shell from 'shelljs';
import Github from 'github-api';
import chalk from 'chalk';
Expand Down

0 comments on commit cbddc44

Please sign in to comment.