Skip to content

Commit e3f8fa9

Browse files
committed
move manifest into separate dir (committed to the build-artifact unlike tmp)
1 parent 7c673fa commit e3f8fa9

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,20 @@ client/versions.json
2929
# NPM packages folder.
3030
node_modules/
3131

32-
# TMP folder (anything)
32+
# TMP folder (run-time tmp)
3333
tmp/
3434

35+
# Manifest (build-generated content, versions)
36+
manifest/
37+
38+
3539
# contains v8 executable for linux-tick-processor (run from project root)
3640
out/*
3741

3842
# Generated content
3943
public/*
4044

45+
4146
# Bower stuff.
4247
bower_components/
4348

update_prod.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ git pull origin master &&
55
npm i &&
66
find node_modules -name .git -delete &&
77
NODE_ENV=production node --harmony `which gulp` build &&
8-
git add --force node_modules public &&
8+
git add --force node_modules public manifest &&
99
git commit -a -m "update node_modules & rebuild" &&
1010
git push origin production

0 commit comments

Comments
 (0)