Skip to content

Commit 85d5281

Browse files
authored
Merge pull request #350 from kratiahuja/serve-refactor
Bump to ember-cli 2.12.0-beta.1
2 parents 64156f7 + 7b627b8 commit 85d5281

23 files changed

Lines changed: 61 additions & 163 deletions

File tree

.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 & 33 deletions
This file was deleted.

.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
.editorconfig
1010
.ember-cli
1111
.gitignore
12-
.jshintrc
12+
.eslintrc.js
1313
.watchmanconfig
1414
.travis.yml
1515
bower.json

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ cache:
2222

2323
before_install:
2424
- npm config set spin false
25-
- npm install -g npm@^2
26-
- npm install -g bower
25+
- npm install -g npm@^3
26+
- npm --version
27+
- npm install -g bower phantomjs-prebuilt
2728
- bower --version
28-
- npm install phantomjs-prebuilt
29-
- node_modules/phantomjs-prebuilt/bin/phantomjs --version
29+
- phantomjs --version
3030

3131
install:
3232
- npm install

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016
3+
Copyright (c) 2015-2017
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

bower.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
{
22
"name": "ember-cli-fastboot",
3-
"dependencies": {
4-
"ember": "~2.10.0",
5-
"ember-cli-shims": "0.1.3"
6-
}
3+
"dependencies": {}
74
}

config/environment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*jshint node:true*/
1+
/* eslint-env node */
22
'use strict';
33

44
module.exports = function(/* environment, appConfig */) {

ember-cli-build.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*jshint node:true*/
2-
/* global require, module */
3-
var EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
1+
/* eslint-env node */
2+
const EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
43

54
module.exports = function(defaults) {
65
var app = new EmberAddon(defaults, {

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* jshint node: true */
1+
/* eslint-env node */
22
'use strict';
33

44
var path = require('path');

lib/.jshintrc

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

0 commit comments

Comments
 (0)