Ignore data & dist folders and add prepublish npm script

release
Etienne Lemay 2016-07-27 12:33:26 -04:00
parent 9648c7d8e2
commit 3f04c9cafa
5 changed files with 4 additions and 2163 deletions

2
.gitignore vendored
View File

@ -1,2 +1,4 @@
node_modules/
build/
data/
dist/

File diff suppressed because one or more lines are too long

2145
dist/emoji-picker.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -50,6 +50,7 @@
"react:clean": "rimraf node_modules/{react,react-dom,react-addons-test-utils}",
"react:14": "npm run react:clean && npm i react@^0.14 react-dom@^0.14 react-addons-test-utils@^0.14 --save-dev",
"react:15": "npm run react:clean && npm i react@^15 react-dom@^15 react-addons-test-utils@^15 --save-dev",
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run clean && npm run build"
}
}