forked from bdefore/universal-redux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add babel command line config to compile step
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"description": "A universal redux renderer (ES6, Webpack, Express)", | ||
"author": "Buck DeFore <[email protected]> (http://github.com/bdefore)", | ||
"license": "MIT", | ||
"version": "1.0.0-beta6", | ||
"version": "2.0.0-beta1", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/bdefore/universal-redux.git" | ||
|
@@ -25,7 +25,7 @@ | |
], | ||
"main": "lib/index.js", | ||
"scripts": { | ||
"compile": "babel src/ --out-dir lib/", | ||
"compile": "babel --presets es2015,stage-0,react --plugins transform-runtime src/ --out-dir lib/", | ||
"dev": "./bin/local-dev.sh", | ||
"prepublish": "npm run compile", | ||
"lint": "eslint -c .eslintrc src", | ||
|