File tree Expand file tree Collapse file tree 9 files changed +2320
-2177
lines changed
Expand file tree Collapse file tree 9 files changed +2320
-2177
lines changed Original file line number Diff line number Diff line change 1+ # unconventional js
2+ /blueprints /* /files /
3+ /vendor /
4+
5+ # compiled output
6+ /dist /
7+ /tmp /
8+
9+ # dependencies
10+ /bower_components /
11+
12+ # misc
13+ /coverage /
14+
15+ # ember-try
16+ /.node_modules.ember-try /
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ module.exports = {
2525 'ember-cli-build.js' ,
2626 'index.js' ,
2727 'testem.js' ,
28+ 'blueprints/*/index.js' ,
2829 'config/**/*.js' ,
2930 'tests/dummy/config/**/*.js'
3031 ] ,
Original file line number Diff line number Diff line change 11# See https://help.github.com/ignore-files/ for more about ignoring files.
22
33# compiled output
4- /dist
5- /tmp
4+ /dist /
5+ /tmp /
66
77# dependencies
8- /node_modules
9- /bower_components
8+ /bower_components /
9+ /node_modules /
1010
1111# misc
1212/.sass-cache
1313/connect.lock
14- /coverage /*
14+ /coverage /
1515/libpeerconnection.log
16- npm-debug.log *
17- yarn-error .log
18- testem .log
16+ / npm-debug.log *
17+ / testem .log
18+ / yarn-error .log
1919
2020# ember-try
21- .node_modules.ember-try /
22- bower.json.ember-try
23- package.json.ember-try
21+ / .node_modules.ember-try /
22+ / bower.json.ember-try
23+ / package.json.ember-try
Original file line number Diff line number Diff line change 1414bower.json
1515ember-cli-build.js
1616testem.js
17+ yarn.lock
18+
19+ # ember-try
20+ .node_modules.ember-try /
21+ bower.json.ember-try
22+ package.json.ember-try
Original file line number Diff line number Diff line change @@ -44,8 +44,14 @@ before_install:
4444 - npm install -g npm@4
4545 - npm --version
4646
47+ install :
48+ - npm install -g codecov
49+
50+ after_success :
51+ - codecov
52+
4753script :
4854 - npm run lint:js
4955 # Usually, it's ok to finish the test scenario without reverting
5056 # to the addon's original dependency state, skipping "cleanup".
51- - node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup
57+ - COVERAGE=true node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ module.exports = function() {
66 return Promise . all ( [
77 getChannelURL ( 'release' ) ,
88 getChannelURL ( 'beta' ) ,
9- getChannelURL ( 'canary' ) ,
9+ getChannelURL ( 'canary' )
1010 ] ) . then ( ( urls ) => {
1111 return {
1212 scenarios : [
You can’t perform that action at this time.
0 commit comments