Skip to content

Commit 79b8a41

Browse files
Ember 3.8
1 parent 333c461 commit 79b8a41

File tree

7 files changed

+459
-495
lines changed

7 files changed

+459
-495
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
/node_modules/
1010

1111
# misc
12+
/.env*
13+
/.pnp*
1214
/.sass-cache
1315
/connect.lock
1416
/coverage/

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
/.bowerrc
1010
/.editorconfig
1111
/.ember-cli
12+
/.env*
1213
/.eslintignore
1314
/.eslintrc.js
1415
/.gitignore

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ jobs:
5050
# we recommend new addons test the current and previous LTS
5151
# as well as latest stable release (bonus points to beta/canary)
5252
- stage: "Additional Tests"
53-
env: EMBER_TRY_SCENARIO=ember-lts-2.16
54-
- env: EMBER_TRY_SCENARIO=ember-lts-2.18
53+
env: EMBER_TRY_SCENARIO=ember-lts-2.18
5554
- env: EMBER_TRY_SCENARIO=ember-lts-3.4
5655
- env: EMBER_TRY_SCENARIO=ember-release
5756
- env: EMBER_TRY_SCENARIO=ember-beta

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ ember-cli-netlify
33

44
This addon allows you to configure your Netlify headers and redirects.
55

6+
7+
Compatibility
8+
------------------------------------------------------------------------------
9+
10+
* Ember.js v2.18 or above
11+
* Ember CLI v2.13 or above
12+
13+
614
Installation
715
------------------------------------------------------------------------------
816

@@ -16,6 +24,12 @@ Usage
1624
Just define a `.netlifyheaders` and/or a `.netlifyredirects` file in the root of your project and this
1725
addon will copy the output to `dist/_headers` and `dist/_redirects` respectively.
1826

27+
Contributing
28+
------------------------------------------------------------------------------
29+
30+
See the [Contributing](CONTRIBUTING.md) guide for details.
31+
32+
1933
License
2034
------------------------------------------------------------------------------
2135

config/ember-try.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,6 @@ module.exports = function() {
1010
]).then((urls) => {
1111
return {
1212
scenarios: [
13-
{
14-
name: 'ember-lts-2.16',
15-
env: {
16-
EMBER_OPTIONAL_FEATURES: JSON.stringify({ 'jquery-integration': true })
17-
},
18-
npm: {
19-
devDependencies: {
20-
'@ember/jquery': '^0.5.1',
21-
'ember-source': '~2.16.0'
22-
}
23-
}
24-
},
2513
{
2614
name: 'ember-lts-2.18',
2715
env: {

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
"devDependencies": {
3333
"@ember/optional-features": "^0.6.3",
3434
"broccoli-asset-rev": "^2.7.0",
35-
"ember-cli": "~3.6.1",
35+
"ember-cli": "~3.8.1",
3636
"ember-cli-babel": "^7.1.2",
37-
"ember-cli-dependency-checker": "^3.0.0",
37+
"ember-cli-dependency-checker": "^3.1.0",
3838
"ember-cli-eslint": "^4.2.3",
3939
"ember-cli-htmlbars": "^3.0.0",
4040
"ember-cli-htmlbars-inline-precompile": "^1.0.3",
@@ -48,7 +48,7 @@
4848
"ember-maybe-import-regenerator": "^0.1.6",
4949
"ember-qunit": "^3.4.1",
5050
"ember-resolver": "^5.0.1",
51-
"ember-source": "~3.6.0",
51+
"ember-source": "~3.8.0",
5252
"ember-source-channel-url": "^1.1.0",
5353
"ember-try": "^1.0.0",
5454
"eslint-plugin-ember": "^5.2.0",

0 commit comments

Comments
 (0)