Skip to content
This repository has been archived by the owner on Sep 13, 2019. It is now read-only.

Commit

Permalink
Merge pull request #13 from Floofies/master
Browse files Browse the repository at this point in the history
Makefile tweaks, build node support
  • Loading branch information
Floofies authored Aug 27, 2017
2 parents 5917570 + 6476f45 commit 2fed3fa
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 21 deletions.
1 change: 1 addition & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ prod : node_modules/uglify-es/bin/uglifyjs prod-build
@printf "Building Production version in prod-build...\n"
@node_modules/uglify-es/bin/uglifyjs -b -o prod-build/differentia.js src/differentia.js
@node_modules/uglify-es/bin/uglifyjs -o prod-build/differentia.min.js src/differentia.js
@cp package.json prod-build/package.json
@printf "Done! ・ω・\n"
clean :
@printf "Cleaning up...\n"
Expand Down
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
{
"name": "differentia",
"version": "1.0.2",
"description": "An Object Algorithm library for JavaScript",
"keywords": [
"objects",
"diff",
"deep",
"library",
"higher-order-functions",
"iterator",
"graph-algorithms",
"clone",
"iddfs",
"traverse",
"search-algorithm",
"deepfreeze",
"deep-search",
"graph-theory",
"graph-search"
],
"homepage": "https://github.com/Floofies/Differentia.js#readme",
"description": "An Object Algorithm library for JavaScript",
"keywords": [
"objects",
"diff",
"deep",
"library",
"higher-order-functions",
"iterator",
"graph-algorithms",
"clone",
"iddfs",
"traverse",
"search-algorithm",
"deepfreeze",
"deep-search",
"graph-theory",
"graph-search"
],
"homepage": "https://github.com/Floofies/Differentia.js#readme",
"repository": {
"type": "git",
"url": "https://github.com/Floofies/Differentia.js.git"
},
"bugs": {
"bugs": {
"url": "https://github.com/Floofies/Differentia.js/issues"
},
"devDependencies": {
Expand All @@ -33,7 +33,7 @@
},
"main": "src/differentia.js",
"scripts": {
"test": "./maketmp/node_modules/.bin/jasmine-node spec"
"test": "jasmine-node spec/Spec.js"
},
"author": "Dani Glore",
"license": "MIT"
Expand Down

0 comments on commit 2fed3fa

Please sign in to comment.