Skip to content

Commit 2dd4b17

Browse files
committed
Upgrade ember-cli & embrace being a node-only ember-cli addon
- use yarn - use eslint directly - remove lots of dependencies required only for building browser code - remove lots of boilerplate ember-cli addon files and directories
1 parent 036d46e commit 2dd4b17

27 files changed

+5293
-232
lines changed

.bowerrc

-4
This file was deleted.

.ember-cli

-9
This file was deleted.

.eslintrc.js

+13
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+
node: true
10+
},
11+
rules: {
12+
}
13+
};

.jshintrc

-33
This file was deleted.

.travis.yml

+6-9
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,19 @@
11
---
22
language: node_js
33
node_js:
4-
- "0.12"
4+
- "6"
55

66
sudo: false
77

88
cache:
9-
directories:
10-
- node_modules
9+
yarn: true
1110

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

1615
install:
17-
- npm install -g bower
18-
- npm install
19-
- bower install
16+
- yarn install --no-lockfile
2017

2118
script:
22-
- npm test
19+
- yarn test

Brocfile.js

-21
This file was deleted.

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -330,9 +330,13 @@ The following properties are used if present on the deployment `context` object:
330330

331331
## Running Tests
332332

333-
- `npm test`
333+
* yarn test
334334

335-
[1]: https://github.com/lukemelia/ember-cli-deploy-lightning-pack "ember-cli-deploy-lightning-pack"
335+
## Why `ember build` and `ember test` don't work
336+
337+
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.
338+
339+
[1]: https://github.com/ember-cli-deploy/ember-cli-deploy-lightning-pack "ember-cli-deploy-lightning-pack"
336340
[2]: http://ember-cli.github.io/ember-cli-deploy/plugins "Plugin Documentation"
337341
[3]: https://www.npmjs.com/package/redis "Redis Client"
338342
[4]: https://github.com/ember-cli-deploy/ember-cli-deploy-build "ember-cli-deploy-build"

RELEASE.md

+3-10
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,12 @@ The following steps should navigate you through the release process to ensure as
44

55
## Steps
66

7-
### Commit the changelog and publish to NPM
7+
### Commit the changelog, bump version, and publish to NPM
88

99
1. run `./bin/changelog` and add output to `CHANGELOG.md`
1010
2. edit changelog output to be as user-friendly as possible (drop [INTERNAL] changes etc.)
11-
3. bump package.json version
12-
4. `./bin/prepare-release`
13-
5. `git checkout master`
14-
6. `git add` the modified `package.json` and `CHANGELOG.md`
15-
7. `git commit -m "Release vx.y.z"`
16-
8. `git push upstream master`
17-
9. `git tag "vx.y.z"`
18-
10. `git push upstream vx.y.z`
19-
11. `npm publish ./ember-cli-deploy-redis-<version>.tgz`
11+
3. `ember release`
12+
4. `npm publish`
2013

2114
### Create a github release
2215

addon/.gitkeep

Whitespace-only changes.

app/.gitkeep

Whitespace-only changes.

bin/prepare-release

-8
This file was deleted.

bower.json

-16
This file was deleted.

circle.yml

-10
This file was deleted.

config/environment.js

-5
This file was deleted.

config/release.js

-20
This file was deleted.

index.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,12 @@ module.exports = {
8181
this.log('config ok', { verbose: true });
8282
},
8383

84-
upload: function(context) {
84+
upload: function(/* context */) {
8585
var redisDeployClient = this.readConfig('redisDeployClient');
8686
var revisionKey = this.readConfig('revisionKey');
8787
var distDir = this.readConfig('distDir');
8888
var filePattern = this.readConfig('filePattern');
8989
var keyPrefix = this.readConfig('keyPrefix');
90-
var maxRecentUploads = this.readConfig('maxRecentUploads');
9190
var filePath = path.join(distDir, filePattern);
9291

9392
this.log('Uploading `' + filePath + '`', { verbose: true });

lib/redis.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ module.exports = CoreObject.extend({
3232
this._client = redisLib.createClient(redisOptions);
3333

3434
this._maxRecentUploads = options.maxRecentUploads;
35-
this._allowOverwrite = options.allowOverwrite;
36-
this._activationSuffix = options.activationSuffix || 'current';
35+
this._allowOverwrite = options.allowOverwrite;
36+
this._activationSuffix = options.activationSuffix || 'current';
3737
},
3838

3939
upload: function(/*keyPrefix, revisionKey, value*/) {

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"test": "tests"
88
},
99
"scripts": {
10-
"test": "node tests/runner.js"
10+
"test": "node tests/runner.js && ./node_modules/.bin/eslint index.js lib/* tests/**/*.js"
1111
},
1212
"repository": "https://github.com/ember-cli-deploy/ember-cli-deploy-redis",
1313
"engines": {
@@ -16,22 +16,22 @@
1616
"author": "Aaron Chambers and the ember-cli-deploy team",
1717
"license": "MIT",
1818
"devDependencies": {
19-
"broccoli-asset-rev": "^2.0.2",
2019
"chai": "^3.5.0",
2120
"chai-as-promised": "^6.0.0",
22-
"ember-cli": "2.9.1",
23-
"ember-cli-release": "0.2.6",
21+
"ember-cli": "^2.12.0",
22+
"ember-cli-release": "1.0.0-beta.2",
23+
"eslint": "^3.18.0",
2424
"github": "^6.1.0",
2525
"glob": "^7.1.1",
26-
"mocha": "^3.1.2",
26+
"mocha": "^3.2.0",
2727
"multiline": "^1.0.2"
2828
},
2929
"keywords": [
3030
"ember-addon",
3131
"ember-cli-deploy-plugin"
3232
],
3333
"dependencies": {
34-
"chalk": "^1.0.0",
34+
"chalk": "^1.1.3",
3535
"core-object": "^2.0.6",
3636
"ember-cli-deploy-plugin": "^0.2.9",
3737
"redis": "^2.6.3",

testem.json

-11
This file was deleted.

tests/.eslintrc.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
globals: {
3+
"describe": true,
4+
"beforeEach": true,
5+
"it": true
6+
},
7+
env: {
8+
mocha: true
9+
}
10+
};

tests/.jshintrc

-51
This file was deleted.

tests/helpers/fake-redis-client.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* jshint node: true */
21
var Promise = require('ember-cli/lib/ext/promise');
32
var CoreObject = require('core-object');
43

@@ -8,7 +7,7 @@ module.exports = CoreObject.extend({
87
this.recentRevisions = [];
98
this.options = options;
109
},
11-
get: function(key) {
10+
get: function(/* key */) {
1211
return Promise.resolve('some-other-value');
1312
},
1413
set: function() { },

tests/runner.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/*eslint-env node*/
12
'use strict';
23

34
var glob = require('glob');
@@ -14,10 +15,10 @@ function addFiles(mocha, files) {
1415
glob.sync(root + files).forEach(mocha.addFile.bind(mocha));
1516
}
1617

17-
addFiles(mocha, '/**/*-nodetest.js');
18+
addFiles(mocha, '/**/*-test.js');
1819

1920
if (arg === 'all') {
20-
addFiles(mocha, '/**/*-nodetest-slow.js');
21+
addFiles(mocha, '/**/*-test-slow.js');
2122
}
2223

2324
mocha.run(function(failures) {

0 commit comments

Comments
 (0)