-
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use the async transform API, add caller and drop dependencies on the …
…beta/rc range. (#162) * Use the async transform API and drop dependencies on the beta/rc range. * Update the README for [email protected]
- Loading branch information
1 parent
32dee19
commit 7952cc2
Showing
5 changed files
with
237 additions
and
385 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ sudo: false | |
language: node_js | ||
node_js: | ||
- 'stable' | ||
- '8' | ||
- '6' | ||
- '4' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
"Charles Samborski <[email protected]> (demurgos.net)" | ||
], | ||
"engines": { | ||
"node": ">=4" | ||
"node": ">=6" | ||
}, | ||
"scripts": { | ||
"test": "xo && mocha" | ||
|
@@ -44,13 +44,13 @@ | |
"vinyl-sourcemaps-apply": "^0.2.0" | ||
}, | ||
"peerDependencies": { | ||
"@babel/core": "7 || ^7.0.0-0" | ||
"@babel/core": "^7.0.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "7.0.0-beta.41", | ||
"@babel/plugin-transform-arrow-functions": "7.0.0-beta.41", | ||
"@babel/plugin-transform-block-scoping": "7.0.0-beta.41", | ||
"@babel/plugin-transform-classes": "7.0.0-beta.41", | ||
"@babel/core": "^7.0.0", | ||
"@babel/plugin-transform-arrow-functions": "^7.0.0", | ||
"@babel/plugin-transform-block-scoping": "^7.0.0", | ||
"@babel/plugin-transform-classes": "^7.0.0", | ||
"gulp-sourcemaps": "^1.1.1", | ||
"mocha": "^5.0.0", | ||
"pre-commit": "^1.2.2", | ||
|
Oops, something went wrong.