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

Commit

Permalink
Add TODOs.
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostwords committed Jul 18, 2014
1 parent b1f3474 commit d4102cc
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tools/dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,16 @@ var package_name = [
// copy chrome/** to dist/
shell.cp('-R', 'chrome/**', 'dist/' + package_name);

// create the package
// create the drag-and-drop installable CRX package
shell.exit(shell.exec(
'cd dist && ../tools/crxmake.sh ' + package_name + ' ~/.ssh/chameleon.pem'
).code);

// TODO create the zip for uploading to Chrome Web Store
// TODO make this is the "release" task (also tags, ...)
// https://developer.chrome.com/extensions/packaging
// 1. Rename the private key that was generated when you created the .crx file to key.pem.
// 2. Put key.pem in the top directory of your extension.
// 3. Compress that directory into a ZIP file.
// 4. Upload the ZIP file using the Chrome Developer Dashboard.
// TODO No need to do the key.pem thing for updates, right?

0 comments on commit d4102cc

Please sign in to comment.