Skip to content

Commit

Permalink
add build process
Browse files Browse the repository at this point in the history
  • Loading branch information
MicheleBertoli committed Dec 15, 2016
1 parent 77312bb commit b7b56e3
Show file tree
Hide file tree
Showing 3 changed files with 287 additions and 24 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
dist
node_modules
12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
{
"name": "react-fix-it",
"version": "0.1.0",
"version": "0.2.0",
"description": "Automagically generate tests from errors",
"main": "index.js",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": "https://github.com/MicheleBertoli/react-fix-it.git",
"author": "Michele Bertoli",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint ./"
"lint": "eslint ./",
"build": "babel ./src --out-dir ./dist",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-jest": "^17.0.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
Expand Down
Loading

0 comments on commit b7b56e3

Please sign in to comment.