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/* /.idea/*
/node_modules/* /node_modules/*
/coverage/ /coverage/
/dist/* /lib/*

View File

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

View File

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