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

Commit 2fed3fa

Browse files
authored
Merge pull request #13 from Floofies/master
Makefile tweaks, build node support
2 parents 5917570 + 6476f45 commit 2fed3fa

File tree

2 files changed

+22
-21
lines changed

2 files changed

+22
-21
lines changed

makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ prod : node_modules/uglify-es/bin/uglifyjs prod-build
1616
@printf "Building Production version in prod-build...\n"
1717
@node_modules/uglify-es/bin/uglifyjs -b -o prod-build/differentia.js src/differentia.js
1818
@node_modules/uglify-es/bin/uglifyjs -o prod-build/differentia.min.js src/differentia.js
19+
@cp package.json prod-build/package.json
1920
@printf "Done! ・ω・\n"
2021
clean :
2122
@printf "Cleaning up...\n"

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
{
22
"name": "differentia",
33
"version": "1.0.2",
4-
"description": "An Object Algorithm library for JavaScript",
5-
"keywords": [
6-
"objects",
7-
"diff",
8-
"deep",
9-
"library",
10-
"higher-order-functions",
11-
"iterator",
12-
"graph-algorithms",
13-
"clone",
14-
"iddfs",
15-
"traverse",
16-
"search-algorithm",
17-
"deepfreeze",
18-
"deep-search",
19-
"graph-theory",
20-
"graph-search"
21-
],
22-
"homepage": "https://github.com/Floofies/Differentia.js#readme",
4+
"description": "An Object Algorithm library for JavaScript",
5+
"keywords": [
6+
"objects",
7+
"diff",
8+
"deep",
9+
"library",
10+
"higher-order-functions",
11+
"iterator",
12+
"graph-algorithms",
13+
"clone",
14+
"iddfs",
15+
"traverse",
16+
"search-algorithm",
17+
"deepfreeze",
18+
"deep-search",
19+
"graph-theory",
20+
"graph-search"
21+
],
22+
"homepage": "https://github.com/Floofies/Differentia.js#readme",
2323
"repository": {
2424
"type": "git",
2525
"url": "https://github.com/Floofies/Differentia.js.git"
2626
},
27-
"bugs": {
27+
"bugs": {
2828
"url": "https://github.com/Floofies/Differentia.js/issues"
2929
},
3030
"devDependencies": {
@@ -33,7 +33,7 @@
3333
},
3434
"main": "src/differentia.js",
3535
"scripts": {
36-
"test": "./maketmp/node_modules/.bin/jasmine-node spec"
36+
"test": "jasmine-node spec/Spec.js"
3737
},
3838
"author": "Dani Glore",
3939
"license": "MIT"

0 commit comments

Comments
 (0)