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 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",