From 7011d196f61bb5f9be8a025d93bf0b84db1dc3a9 Mon Sep 17 00:00:00 2001 From: Joel Konijn Date: Fri, 25 May 2018 22:06:41 +0200 Subject: [PATCH 1/2] The makefile now takes symlinks into account and works on OSX --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fef604f..45ba2fe 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ pack: npm dedupe cp package.json _package.json node lib/pack - find . -type file \ + find -L . -type file \ | grep -v ./app/ \ | grep -v ./.git/ \ | grep -v ./docs/ \ @@ -24,7 +24,7 @@ pack: | grep -v ./_package.json \ | grep -v ./Makefile \ | grep -v workshop.tar.gz \ - | grep -v ./node_modules/[^@] \ + | grep -Ev "./node_modules/[^@]" \ | tar -cvzf workshop.tar.gz -T - mv _package.json package.json From 1d15dfa0917dc32380bad802d19169d51bfa4229 Mon Sep 17 00:00:00 2001 From: Joel Konijn Date: Fri, 25 May 2018 22:09:07 +0200 Subject: [PATCH 2/2] added contact information --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 602aa40..ae0054b 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ }, "contributors": [ "Mikola Lysenko", - "Hugh Kennedy (http://hughsk.io/)" + "Hugh Kennedy (http://hughsk.io/)", + "Philipp Beau (https://dathuis.nl/)" ], "scripts": { "start": "node node.js",