Skip to content

Commit d1eb95a

Browse files
author
kellyselden
committed
1 parent 9d42415 commit d1eb95a

21 files changed

Lines changed: 113 additions & 107 deletions

.editorconfig

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,8 @@ insert_final_newline = true
1313
indent_style = space
1414
indent_size = 2
1515

16-
[*.js]
17-
indent_style = space
18-
indent_size = 2
19-
2016
[*.hbs]
21-
indent_style = space
22-
indent_size = 2
23-
24-
[*.css]
25-
indent_style = space
26-
indent_size = 2
27-
28-
[*.html]
29-
indent_style = space
30-
indent_size = 2
17+
insert_final_newline = false
3118

3219
[*.{diff,md}]
3320
trim_trailing_whitespace = false

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
22

33
# compiled output
44
/dist
@@ -14,5 +14,5 @@
1414
/connect.lock
1515
/coverage/*
1616
/libpeerconnection.log
17-
npm-debug.log
17+
npm-debug.log*
1818
testem.log

.jshintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
"strict": false,
2929
"white": false,
3030
"eqnull": true,
31-
"esnext": true,
31+
"esversion": 6,
3232
"unused": true
3333
}

.npmignore

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,17 @@
1-
test
2-
tests
1+
/bower_components
2+
/config/ember-try.js
3+
/dist
4+
/test
5+
/tests
6+
/tmp
7+
**/.gitkeep
8+
.bowerrc
9+
.editorconfig
10+
.ember-cli
11+
.gitignore
12+
.jshintrc
13+
.watchmanconfig
14+
.travis.yml
15+
bower.json
16+
ember-cli-build.js
17+
testem.js

.travis.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,18 @@ sudo: false
1717

1818
cache:
1919
directories:
20-
- node_modules
20+
- $HOME/.npm
21+
- $HOME/.cache # includes bowers cache
2122

2223
before_install:
23-
- "npm config set spin false"
24-
- "npm install -g npm@^2"
24+
- npm config set spin false
25+
- npm install -g npm@^2
26+
- npm install -g bower
27+
- bower --version
2528
- npm install phantomjs-prebuilt
2629
- node_modules/phantomjs-prebuilt/bin/phantomjs --version
2730

2831
install:
29-
- npm install -g bower
3032
- npm install
3133
- bower install
3234

.watchmanconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"ignore_dirs": ["tmp", "dist"]
3+
}

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) 2015
3+
Copyright (c) 2016
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: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11
{
22
"name": "ember-cli-fastboot",
33
"dependencies": {
4-
"jquery": "^1.11.1",
5-
"ember": "canary",
6-
"ember-data": "canary",
7-
"ember-resolver": "~0.1.12",
8-
"ember-cli-shims": "0.1.0",
9-
"ember-cli-test-loader": "0.2.2",
10-
"ember-qunit": "0.2.8",
11-
"ember-qunit-notifications": "0.0.7",
12-
"qunit": "~1.17.1"
13-
},
14-
"resolutions": {
15-
"ember": "canary"
4+
"ember": "~2.10.0",
5+
"ember-cli-shims": "0.1.3"
166
}
177
}

config/environment.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/*jshint node:true*/
12
'use strict';
23

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

ember-cli-build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = function(defaults) {
88
});
99

1010
/*
11-
This build file specifes the options for the dummy test app of this
11+
This build file specifies the options for the dummy test app of this
1212
addon, located in `/tests/dummy`
1313
This build file does *not* influence how the addon or the app using it
1414
behave. You most likely want to be modifying `./index.js` or app's build file

0 commit comments

Comments
 (0)