From cc4def33f99150407bb587a0faa85b3a7bad1f0c Mon Sep 17 00:00:00 2001 From: Floofies Date: Sun, 27 Aug 2017 14:42:29 -0400 Subject: [PATCH 1/3] Added package.json to prod build --- makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/makefile b/makefile index b2d9479..252e474 100644 --- a/makefile +++ b/makefile @@ -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" From ecec315568af110e4393dce63c269c8c517730ef Mon Sep 17 00:00:00 2001 From: Floofies Date: Sun, 27 Aug 2017 14:44:10 -0400 Subject: [PATCH 2/3] Replaced tabs with spaces --- package.json | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/package.json b/package.json index 7b568e6..a7f845c 100644 --- a/package.json +++ b/package.json @@ -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": { From 6476f457c7ae545753caed50341cb11619e0f635 Mon Sep 17 00:00:00 2001 From: Floofies Date: Sun, 27 Aug 2017 15:03:40 -0400 Subject: [PATCH 3/3] Shortened test script field --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a7f845c..0cd2e5a 100644 --- a/package.json +++ b/package.json @@ -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"