This commit is contained in:
Kai Moseley 2016-12-20 11:15:02 +00:00
parent d6ac43a6b8
commit 7a2b678d80
3 changed files with 6 additions and 5 deletions

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
/.idea/*
/node_modules/*
/coverage/
/dist/*
/lib/*

View File

@ -1,4 +1,5 @@
node_modules
node_modules/
src/
.babelrc
.eslintrc.js
.flowconfig

View File

@ -1,10 +1,10 @@
{
"name": "redux-scc",
"version": "0.1.2",
"version": "0.1.3",
"description": "Redux store chunk creator",
"main": "./dist/index.js",
"main": "./lib/index.js",
"scripts": {
"build": "webpack --progress",
"build": "babel -d lib/ src/",
"test": "jest",
"prepublish": "npm run build"
},