Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed the creation of the workshop archive #94

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/ \
Expand All @@ -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

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
},
"contributors": [
"Mikola Lysenko",
"Hugh Kennedy <[email protected]> (http://hughsk.io/)"
"Hugh Kennedy <[email protected]> (http://hughsk.io/)",
"Philipp Beau <[email protected]> (https://dathuis.nl/)"
],
"scripts": {
"start": "node node.js",
Expand Down