Skip to content

fixing development on windows machine #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: 1.0-breaking-changes
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions Makefile

This file was deleted.

9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
"description": "Unopinionated store enhancer that persists state changes (locally).",
"main": "lib",
"scripts": {
"prepublish": "make test clean build",
"test": "make test"
"prepublish": "npm test && npm run clean && npm run build",
"clean": "rimraf lib",
"build": "babel src --ignore __tests__ --out-dir lib",
"test": "eslint src && mocha --compilers js:babel/register --recursive src/__tests__"
},
"files": [
"lib/",
Expand Down Expand Up @@ -39,6 +41,7 @@
"chai": "^3.2.0",
"eslint": "^1.3.1",
"eslint-config-airbnb": "0.0.8",
"mocha": "^2.2.5"
"mocha": "^2.2.5",
"rimraf": "^2.4.3"
}
}