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

Add Public Suffix List (PSL) updating to build process #970

Merged
merged 7 commits into from
Oct 25, 2016
Merged
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
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
build: zip crx
build: updatepsl zip crx
travisbuild: zip crx
updatepsl:
scripts/updatepsl.sh
zip:
scripts/makezip.sh
crx:
Expand All @@ -8,11 +11,12 @@ todo:
logging:
grep -rn 'console.log' src lib
xpi:
# TODO when does "make xpi" get called? should probably use same zip flags (exclude list, ...) as "make zip"
zip -r privacybadger.xpi *
upload:
scp doc/sample_cookieblocklist.txt $$COOKIE_BLOCK_UPLOAD_PATH
scp doc/sample_cookieblocklist_legacy.txt $$COOKIE_BLOCK_LEGACY_UPLOAD_PATH
#scp doc/dnt-policies-example.json $$DNT_POLICIES_UPLOAD_PATH
lint:
./node_modules/.bin/eslint .
.PHONY: build todo logging zip crx lint
.PHONY: build travisbuild updatepsl zip crx todo logging lint
Loading