Skip to content

Commit f0f636f

Browse files
authored
Merge pull request #98 from PoslinskiNet/feature/codecov
Codecov setup & 3.12 upgrade
2 parents 77242f2 + 1af7f1a commit f0f636f

File tree

9 files changed

+2320
-2177
lines changed

9 files changed

+2320
-2177
lines changed

.eslintignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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/

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
],

.gitignore

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
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

.npmignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,9 @@
1414
bower.json
1515
ember-cli-build.js
1616
testem.js
17+
yarn.lock
18+
19+
# ember-try
20+
.node_modules.ember-try/
21+
bower.json.ember-try
22+
package.json.ember-try

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
4753
script:
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

config/ember-try.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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: [

0 commit comments

Comments
 (0)