(manifest)
| 137 | ); |
| 138 | const version = chromeManifest["version"]; |
| 139 | const writeDistManifest = async (manifest) => { |
| 140 | await Deno.writeTextFile("dist/vimium/manifest.json", JSON.stringify(manifest, null, 2)); |
| 141 | }; |
| 142 | // cd into "dist/vimium" before building the zip, so that the files in the zip don't each have the |
| 143 | // path prefix "dist/vimium". |
| 144 | // --filesync ensures that files in the archive which are no longer on disk are deleted. It's |