diff --git a/.gitignore b/.gitignore index ec388491..4fc53db5 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ node_modules npm-debug.log dist +dist_package releases webogram*.zip app/js/templates.js \ No newline at end of file diff --git a/Makefile b/Makefile index 562b50aa..57ff674e 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,9 @@ package: ./node_modules/gulp/bin/gulp.js clean ./node_modules/gulp/bin/gulp.js package - find dist | grep "DS_Store" | xargs rm -rf - cd dist && zip -r ../releases/webogram_v$(version).zip . + cp -r dist dist_package + find dist_package | grep "\.git\|DS_Store" | xargs rm -rf + cd dist_package && zip -r ../releases/webogram_v$(version).zip . publish: ./node_modules/gulp/bin/gulp.js clean