|
| 1 | +import { base } from "../base.js"; |
| 2 | +import { blockCSpell } from "./blockCSpell.js"; |
| 3 | +import { blockDevelopmentDocs } from "./blockDevelopmentDocs.js"; |
| 4 | +import { blockGitHubActionsCI } from "./blockGitHubActionsCI.js"; |
| 5 | +import { blockGitignore } from "./blockGitignore.js"; |
| 6 | +import { blockMarkdownlint } from "./blockMarkdownlint.js"; |
| 7 | +import { blockPackageJson } from "./blockPackageJson.js"; |
| 8 | +import { blockPrettier } from "./blockPrettier.js"; |
| 9 | + |
| 10 | +export const blockWebExt = base.createBlock({ |
| 11 | + about: { |
| 12 | + name: "Web-ext", |
| 13 | + }, |
| 14 | + produce() { |
| 15 | + return { |
| 16 | + addons: [ |
| 17 | + blockCSpell({ |
| 18 | + ignores: ["assets"], |
| 19 | + }), |
| 20 | + blockDevelopmentDocs({ |
| 21 | + sections: { |
| 22 | + Building: { |
| 23 | + contents: ` |
| 24 | +Run [ESBuild](https://esbuild.github.io) locally to build source files: |
| 25 | +
|
| 26 | +\`\`\`shell |
| 27 | +pnpm dev |
| 28 | +\`\`\` |
| 29 | +
|
| 30 | +Add \`--watch\` to run the builder in a watch mode that continuously re-builds as you save files: |
| 31 | +
|
| 32 | +\`\`\`shell |
| 33 | +pnpm dev --watch |
| 34 | +\`\`\` |
| 35 | +`, |
| 36 | + innerSections: [ |
| 37 | + { |
| 38 | + contents: ` |
| 39 | +Follow Google Chrome's _[Load an unpacked extension](https://developer.chrome.com/docs/extensions/mv3/getstarted/#unpacked)_ guide to load this repository's directory as an extension locally. |
| 40 | +
|
| 41 | +> ♻️ Remember to reload the extension in \`chrome://extensions\` whenever you make changes locally! |
| 42 | +`, |
| 43 | + heading: "Local Development with Chrome", |
| 44 | + }, |
| 45 | + { |
| 46 | + contents: ` |
| 47 | +Follow Firefox's _[Temporary installation in Firefox](https://extensionworkshop.com/documentation/develop/temporary-installation-in-firefox/)_ guide to load this repository's directory as an extension locally. |
| 48 | +
|
| 49 | +You'll then need to authorize the extension to run on <https://github.com>: |
| 50 | +
|
| 51 | +1. Find and select the _Extensions_ icon in the top right of Firefox |
| 52 | +2. Select the _"Manage Extension"_ gear icon next to _Refined Saved Replies_ |
| 53 | +3. Select the _"Always Allow on github.com"_ option |
| 54 | +
|
| 55 | +> ♻️ Remember to reload the extension in \`about:debugging#/runtime/this-firefox\` whenever you make changes locally! |
| 56 | +`, |
| 57 | + heading: "Local Development with Firefox", |
| 58 | + }, |
| 59 | + { |
| 60 | + contents: ` |
| 61 | +Run [\`web-ext\`](https://extensionworkshop.com) to build a production-ready \`.zip\` under \`./web-ext-artifacts/\`: |
| 62 | +
|
| 63 | +\`\`\`shell |
| 64 | +pnpm build |
| 65 | +\`\`\` |
| 66 | +
|
| 67 | +Then upload that \`./web-ext-artifacts/refined_saved_replies-*.zip\` file to: |
| 68 | +
|
| 69 | +- [Chrome Web Store Developer Dashboard](https://chrome.google.com/webstore/devconsole) |
| 70 | +- [Firefox Add-ons Developer Hub](https://addons.mozilla.org/en-US/developers/addon/submit/distribution) |
| 71 | +`, |
| 72 | + heading: "Production Builds", |
| 73 | + }, |
| 74 | + ], |
| 75 | + }, |
| 76 | + Linting: { |
| 77 | + contents: { |
| 78 | + items: [ |
| 79 | + `- \`pnpm lint:web-ext\` ([web-ext](https://extensionworkshop.com)): Lints browser extension metadata after \`pnpm dev\` creates local files`, |
| 80 | + ], |
| 81 | + }, |
| 82 | + }, |
| 83 | + }, |
| 84 | + }), |
| 85 | + blockGitHubActionsCI({ |
| 86 | + jobs: [ |
| 87 | + { |
| 88 | + name: "Build", |
| 89 | + steps: [{ run: "pnpm build" }], |
| 90 | + }, |
| 91 | + { |
| 92 | + name: "Lint Web-ext", |
| 93 | + steps: [{ run: "pnpm dev" }, { run: "pnpm lint:web-ext" }], |
| 94 | + }, |
| 95 | + ], |
| 96 | + }), |
| 97 | + blockGitignore({ |
| 98 | + ignores: ["*.zip", "web-ext-artifacts"], |
| 99 | + }), |
| 100 | + blockMarkdownlint({ |
| 101 | + ignores: ["assets/"], |
| 102 | + }), |
| 103 | + blockPackageJson({ |
| 104 | + properties: { |
| 105 | + devDependencies: { |
| 106 | + esbuild: "^0.25.0", |
| 107 | + "web-ext": "^8.3.0", |
| 108 | + }, |
| 109 | + scripts: { |
| 110 | + build: "web-ext build --overwrite-dest", |
| 111 | + dev: "esbuild src/content-script.ts --bundle --minify --outfile=lib/content-script.js --sourcemap", |
| 112 | + "lint:web-ext": "web-ext lint", |
| 113 | + }, |
| 114 | + }, |
| 115 | + }), |
| 116 | + blockPrettier({ |
| 117 | + ignores: ["assets/"], |
| 118 | + }), |
| 119 | + ], |
| 120 | + }; |
| 121 | + }, |
| 122 | +}); |
0 commit comments