Skip to content
This repository was archived by the owner on May 15, 2020. It is now read-only.

Commit bd20784

Browse files
committed
fix(deps): update prod dependencies
1 parent 48c14e9 commit bd20784

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
2020
"license": "MPL-2.0",
2121
"dependencies": {
2222
"bluebird": "2.3.11",
23-
"body-parser": "1.14.1",
23+
"body-parser": "1.15.2",
2424
"bower": "*",
2525
"broccoli-asset-rev": "^2.1.2",
2626
"broccoli-ember-hbs-template-compiler": "1.7.0",
27-
"broccoli-sass": "0.6.7",
27+
"broccoli-sass": "0.7.0",
2828
"client-sessions": "0.7.0",
29-
"convict": "0.4.2",
30-
"cookie-parser": "1.3.3",
29+
"convict": "1.5.0",
30+
"cookie-parser": "1.4.3",
3131
"ember-cli": "1.13.15",
3232
"ember-cli-app-version": "1.0.0",
33-
"ember-cli-babel": "5.1.5",
33+
"ember-cli-babel": "5.1.10",
3434
"ember-cli-content-security-policy": "0.4.0",
3535
"ember-cli-htmlbars": "1.0.1",
3636
"ember-cli-htmlbars-inline-precompile": "0.3.1",
@@ -40,10 +40,10 @@
4040
"ember-disable-proxy-controllers": "1.0.1",
4141
"ember-export-application-global": "1.0.4",
4242
"ember-simple-auth": "1.0.1",
43-
"express": "4.13.3",
44-
"glob": "4.3.1",
45-
"mozlog": "2.0.2",
46-
"request": "2.51.0"
43+
"express": "4.14.0",
44+
"glob": "7.1.1",
45+
"mozlog": "2.0.6",
46+
"request": "2.79.0"
4747
},
4848
"devDependencies": {
4949
"ember-cli-qunit": "1.0.4",

scripts/run_dev.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const cp = require('child_process');
88
const path = require('path');
99

1010
var config = require('../lib/config').get('server');
11-
console.log(config); //eslint-disable-line no-console
11+
console.log(config); // eslint-disable-line no-console
1212

1313
var emberBuild = cp.spawn(path.join(__dirname, '..', 'node_modules', '.bin', 'ember'), ['build', '--watch'], { stdio: 'inherit' });
1414
emberBuild.on('exit', process.exit);
@@ -17,4 +17,4 @@ var server = cp.spawn(path.join(__dirname, '..', 'node_modules', '.bin', 'nodemo
1717
server.on('exit', process.exit);
1818

1919
var port = config.port === '80' ? '' : ':' + config.port;
20-
console.log('Console is available at:', 'http://' + config.host + port);
20+
console.log('Console is available at:', 'http://' + config.host + port); // eslint-disable-line no-console

0 commit comments

Comments
 (0)