Skip to content

Commit

Permalink
move dev-only scripts to dev folder, so they aren't sent with the rel…
Browse files Browse the repository at this point in the history
…ease
  • Loading branch information
Kelly Selden committed Jan 14, 2016
1 parent 0c55b59 commit 69fd8d1
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ STEPS:
1. let other contributors know that you are preparing a release and to hold off on merging PRs or pushing new code
* ensure you using the latest stable node and iojs (but not v0.13.x for now)
as it has a broken zlib which causes it to publish corrupted modules)
* run `./bin/changelog` and add output to `CHANGELOG.md`
* run `./dev/changelog` and add output to `CHANGELOG.md`
* edit changelog output to be as user-friendly as possible (drop [INTERNAL] changes etc.)
* bump `package.json` version
* `./bin/prepare-release`
* `./dev/prepare-release`
* `cd to/someplace/to/test/`
* ensure `ember version` is the newly packaged version
* ensure new project generation works `ember new --skip-npm my-cool-test-project`
Expand Down
2 changes: 1 addition & 1 deletion bin/changelog → dev/changelog
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*
* Usage:
*
* bin/changelog
* dev/changelog
*/

var EOL = require('os').EOL;
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"ember": "./bin/ember"
},
"scripts": {
"docs": "node bin/generate-docs.js",
"docs": "node dev/generate-docs.js",
"jshint": "mocha tests/unit/jshint-test",
"test": "node tests/runner",
"test:debug": "node debug tests/runner",
Expand Down

0 comments on commit 69fd8d1

Please sign in to comment.