Skip to content

Commit ee9359d

Browse files
authored
Merge pull request #8 from ember-fastboot/0.12-support
Add Node 0.12 support
2 parents e64f85e + cbcf5b4 commit ee9359d

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

.babelrc

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

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: node_js
22
node_js:
33
- "stable"
44
- "4"
5+
- "0.12"
56

67
env:
78
- CXX=g++-4.8 WORKER_COUNT=2

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
},
2424
"homepage": "https://github.com/ember-fastboot/fastboot-express-middleware#readme",
2525
"devDependencies": {
26+
"babel-core": "^6.11.4",
27+
"babel-preset-es2015": "^6.9.0",
2628
"chai": "^3.5.0",
2729
"chai-as-promised": "^5.3.0",
2830
"express": "^4.13.4",
@@ -32,6 +34,6 @@
3234
},
3335
"dependencies": {
3436
"chalk": "^1.1.3",
35-
"fastboot": "^1.0.0-beta.5"
37+
"fastboot": "^1.0.0-rc.0"
3638
}
3739
}

test/mocha.opts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
--require test/support/common
2+
--compilers js:babel-core/register
3+

0 commit comments

Comments
 (0)