Skip to content
This repository was archived by the owner on Feb 25, 2020. It is now read-only.

Commit d4102cc

Browse files
committed
Add TODOs.
1 parent b1f3474 commit d4102cc

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

tools/dist.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,16 @@ var package_name = [
2323
// copy chrome/** to dist/
2424
shell.cp('-R', 'chrome/**', 'dist/' + package_name);
2525

26-
// create the package
26+
// create the drag-and-drop installable CRX package
2727
shell.exit(shell.exec(
2828
'cd dist && ../tools/crxmake.sh ' + package_name + ' ~/.ssh/chameleon.pem'
2929
).code);
30+
31+
// TODO create the zip for uploading to Chrome Web Store
32+
// TODO make this is the "release" task (also tags, ...)
33+
// https://developer.chrome.com/extensions/packaging
34+
// 1. Rename the private key that was generated when you created the .crx file to key.pem.
35+
// 2. Put key.pem in the top directory of your extension.
36+
// 3. Compress that directory into a ZIP file.
37+
// 4. Upload the ZIP file using the Chrome Developer Dashboard.
38+
// TODO No need to do the key.pem thing for updates, right?

0 commit comments

Comments
 (0)