Skip to content

Commit

Permalink
close #35; webpack and uglify
Browse files Browse the repository at this point in the history
  • Loading branch information
justincy committed Apr 6, 2017
1 parent 9932b8b commit 69d5932
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ node_modules
.c9
coverage
npm-debug.log
dist
15 changes: 11 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gensearch",
"version": "2.3.1",
"version": "2.4.0",
"description": "Generate search links for genealogy websites",
"repository": {
"type": "git",
Expand All @@ -10,19 +10,26 @@
"main": "src/search.js",
"scripts": {
"test": "mocha --recursive",
"build": "browserify src/search.js -s gensearch -o gensearch.js",
"build": "npm run build:dev && npm run build:min",
"build:dev": "webpack",
"build:min": "webpack --env.production",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"files": [
"src",
"dist"
],
"keywords": [
"genealogy"
],
"author": "Justin York",
"license": "MIT",
"devDependencies": {
"browserify": "3.44.2",
"bannerjs": "^1.0.5",
"coveralls": "2.11.2",
"istanbul": "0.3.8",
"mocha": "2.2.1"
"mocha": "2.2.1",
"webpack": "^2.3.3"
}
}

0 comments on commit 69d5932

Please sign in to comment.