Skip to content

Commit

Permalink
Use babel loader; bump verison
Browse files Browse the repository at this point in the history
  • Loading branch information
codyromano committed Oct 29, 2017
1 parent 1ab1b66 commit 851bb9b
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
lib
*_
27 changes: 25 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,35 @@
{
"name": "react-collision-provider",
"version": "1.0.0",
"version": "1.1.0",
"description": "Simple collision detection for DOM elements using React.js",
"main": "index.js",
"main": "./lib/index.js",
"module": "./src/index.js",
"directories": {
"example": "example"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.5.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1"
},
"babel": {
"presets": [
"react",
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"scripts": {
"build": "babel src --out-dir lib",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 851bb9b

Please sign in to comment.