Skip to content

Commit ee45ee5

Browse files
authored
Merge pull request #33 from ember-cli-deploy/chore/ember-cli-upgrade
Update ember-cli and dependencies
2 parents 4baba5f + 58c7831 commit ee45ee5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+5380
-418
lines changed

.bowerrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

.eslintrc.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module.exports = {
2+
root: true,
3+
parserOptions: {
4+
ecmaVersion: 6,
5+
sourceType: 'module'
6+
},
7+
extends: 'eslint:recommended',
8+
env: {
9+
browser: true
10+
},
11+
rules: {
12+
}
13+
};

.jshintrc

Lines changed: 0 additions & 32 deletions
This file was deleted.

.travis.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
---
22
language: node_js
33
node_js:
4-
- "4"
54
- "6"
65

76
sudo: false
87

98
cache:
10-
directories:
11-
- $HOME/.npm
9+
yarn: true
1210

1311
before_install:
14-
- npm config set spin false
12+
- curl -o- -L https://yarnpkg.com/install.sh | bash
13+
- export PATH=$HOME/.yarn/bin:$PATH
1514

1615
install:
17-
- npm install
16+
- yarn install --no-lockfile
1817

1918
script:
20-
- npm test
19+
- yarn test

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,13 @@ gzip: {
194194
}
195195
```
196196

197-
## Running Tests
197+
## Tests
198198

199-
- `npm test`
199+
* yarn test
200+
201+
## Why `ember build` and `ember test` don't work
202+
203+
Since this is a node-only ember-cli addon, this package does not include many files and dependencies which are part of ember-cli's typical `ember build` and `ember test` processes.
200204

201205
[1]: http://ember-cli.github.io/ember-cli-deploy/plugins "Plugin Documentation"
202206
[2]: https://github.com/ember-cli-deploy/ember-cli-deploy-build "ember-cli-deploy-build"

addon/.gitkeep

Whitespace-only changes.

app/.gitkeep

Whitespace-only changes.

bin/prepare-release

Lines changed: 0 additions & 8 deletions
This file was deleted.

bower.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

circle.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)