Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

Commit

Permalink
Use babel-register instead of babel-core/register
Browse files Browse the repository at this point in the history
  • Loading branch information
thangngoc89 committed Mar 22, 2016
1 parent add524b commit fe2ec65
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
- Fixed: Missing babel-register package.
([#335](https://github.com/MoOx/statinamic/issues/335))

# 0.9.1 - 2016-03-21

- Fixed: default boilerplate have a correct .gitignore file (not .npmignore)
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
},
"dependencies": {
"babel-polyfill": "^6.5.0",
"babel-register": "^6.6.5",
"chalk": "^1.1.0",
"classnames": "^2.2.3",
"debug": "^2.2.0",
Expand Down Expand Up @@ -211,7 +212,7 @@
"failFast": true,
"verbose": true,
"require": [
"babel-core/register"
"babel-register"
],
"babel": "inherit"
}
Expand Down
2 changes: 1 addition & 1 deletion src/content-loader/__tests__/description.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable max-len */
import test from "ava"; import "babel-core/register"
import test from "ava"
import description from "../description"
import * as fixtures from "./fixtures/description"

Expand Down

0 comments on commit fe2ec65

Please sign in to comment.