-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14457 from locks/ember-source-cleanup
ember-source related cleanup
- Loading branch information
Showing
3 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,33 @@ | ||
node-tests/ | ||
CODE_OF_CONDUCT.md | ||
CONTRIBUTING.md | ||
FEATURES.md | ||
STYLEGUIDE.md | ||
VERSION | ||
bin | ||
blueprints | ||
bower.json | ||
bower_components | ||
config | ||
ember-cli-build.js | ||
ember-source.gemspec | ||
features.json | ||
generators | ||
lib | ||
node-tests | ||
node_modules | ||
packages | ||
scripts | ||
server | ||
testem.dist.json | ||
testem.json | ||
testem.travis-browsers.js | ||
tests | ||
tmp | ||
vendor | ||
!vendor/ember/ | ||
yarn.lock | ||
yuidoc.json | ||
|
||
# In the future we will likely want to restrict exactly | ||
# which parts of `/dist` we want to include. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
var execSync = require('child_process').execSync; | ||
|
||
execSync("ember build --environment production"); | ||
execSync("npm publish"); |