-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Linux prepare and publish scripts
- Loading branch information
Nathan Reid
committed
Oct 30, 2017
1 parent
b7dae67
commit b7fb46c
Showing
3 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
*.tests.js | ||
*.cmd | ||
*.list | ||
*.gitignore | ||
*.eslintrc | ||
*.editorconfig | ||
*.sh | ||
package.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
rm -rf /s /q ./meteor-css-modules | ||
rsync -d --exclude-from prepare-exclude.rsync.list --exclude='*/' ./ ./meteor-css-modules | ||
rsync -d --exclude-from prepare-exclude.rsync.list --exclude='*/' ./helpers/ ./meteor-css-modules/helpers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
./prepare.sh | ||
cd meteor-css-modules | ||
meteor publish | ||
cd .. |