Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
have bundler delete server/node_modules, bump up version number
Browse files Browse the repository at this point in the history
  • Loading branch information
psawaya committed Jan 19, 2013
1 parent db87091 commit 6476f54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions bundle_for_webstore.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ def bundle():
if os.path.isdir('temp/pages/debug_settings'): if os.path.isdir('temp/pages/debug_settings'):
shutil.rmtree('temp/pages/debug_settings') shutil.rmtree('temp/pages/debug_settings')


# Delete node_modules in server; they're unnecessary for client
if os.path.isdir('temp/server/node_modules'):
shutil.rmtree('temp/server/node_modules')

# Delete infobar manifest # Delete infobar manifest
os.unlink('temp/infobar/manifest.json') os.unlink('temp/infobar/manifest.json')


Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,7 @@
{ {
"name": "Gombot Alpha", "name": "Gombot Alpha",
"manifest_version": 2, "manifest_version": 2,
"version": "0.1.7", "version": "0.1.8",
"description": "Tired of remembering your usernames and passwords? Let Gombot do the work for you!", "description": "Tired of remembering your usernames and passwords? Let Gombot do the work for you!",
"permissions": [ "permissions": [
"tabs", "tabs",
Expand Down

0 comments on commit 6476f54

Please sign in to comment.