-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
46 additions
and
7,085 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,33 +22,27 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
|
||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
- uses: oven-sh/setup-bun@v2 | ||
|
||
- name: Configure Git | ||
run: | | ||
git config user.email "[email protected]" | ||
git config user.name "GitHub Actions" | ||
- name: Install dependencies | ||
run: pnpm install | ||
run: bun install | ||
|
||
- name: Bump Version | ||
id: version | ||
run: | | ||
pnpx changelogen@latest --bump | ||
NEW_VERSION=$(node -pe 'require("./package.json").version') | ||
bunx changelogen@latest --bump | ||
NEW_VERSION=$(bun --print 'require("./package.json").version') | ||
echo "newVersion=$NEW_VERSION" >> "$GITHUB_OUTPUT" | ||
- name: Build and Zip | ||
run: | | ||
pnpm zip | ||
pnpm zip:firefox | ||
bun run zip | ||
bun run zip:firefox | ||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v4 | ||
|
@@ -59,7 +53,7 @@ jobs: | |
|
||
- name: Submit | ||
run: | | ||
pnpm wxt submit \ | ||
bun wxt submit \ | ||
--chrome-zip .output/*-chrome.zip \ | ||
--firefox-zip .output/*-firefox.zip --firefox-sources-zip .output/*-sources.zip | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ dist | |
dist-* | ||
artifacts | ||
coverage | ||
pnpm-lock.yaml | ||
.wxt | ||
.output | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"description": "Remove generated files from GitHub line counts", | ||
"private": true, | ||
"version": "1.7.0", | ||
"packageManager": "[email protected]", | ||
"packageManager": "[email protected]", | ||
"type": "module", | ||
"scripts": { | ||
"check": "check", | ||
|
@@ -16,29 +16,27 @@ | |
"zip": "wxt zip", | ||
"zip:firefox": "wxt zip -b firefox", | ||
"prepare": "simple-git-hooks", | ||
"postinstall": "wxt prepare", | ||
"submit": "env-cmd -f ./.env.submit ./scripts/submit.sh", | ||
"submit:dry": "pnpm -s submit --dry-run" | ||
"postinstall": "wxt prepare" | ||
}, | ||
"dependencies": { | ||
"@aklinker1/check": "^1.2.0", | ||
"@tanstack/vue-query": "^5.59.13", | ||
"@vueuse/core": "^9", | ||
"@webext-core/messaging": "^1.4.0", | ||
"@webext-core/proxy-service": "^1.2.0", | ||
"async-mutex": "^0.4.0", | ||
"daisyui": "^3.7.7", | ||
"fast-deep-equal": "^3.1.3", | ||
"minimatch": "^9.0.3", | ||
"ofetch": "^1.3.3", | ||
"vue-query": "^1.26.0" | ||
"ofetch": "^1.3.3" | ||
}, | ||
"devDependencies": { | ||
"@aklinker1/generate-changelog": "^1.1.2", | ||
"@iconify/json": "^2.2.119", | ||
"@types/bun": "^1.1.11", | ||
"@types/chrome": "^0.0.269", | ||
"@types/jsdom": "^21.1.3", | ||
"@vitejs/plugin-vue": "^5.0.4", | ||
"@vitest/coverage-v8": "^1.3.1", | ||
"@vitest/coverage-v8": "^2.1.3", | ||
"@wxt-dev/module-vue": "^1.0.0", | ||
"autoprefixer": "^10.4.16", | ||
"env-cmd": "^10.1.0", | ||
|
@@ -52,23 +50,16 @@ | |
"simple-git-hooks": "^2.9.0", | ||
"tailwindcss": "^3.3.3", | ||
"tsx": "^3.12.10", | ||
"typescript": "^5.4.2", | ||
"unplugin-icons": "^0.17.0", | ||
"vitest": "^1.3.1", | ||
"typescript": "^5.6.3", | ||
"unplugin-icons": "^0.19.3", | ||
"vitest": "^2.1.3", | ||
"vue": "^3.4.21", | ||
"vue-tsc": "^2.0.6", | ||
"vue-tsc": "^2.1.6", | ||
"webextension-polyfill": "0.12.0", | ||
"wxt": "0.19.1" | ||
}, | ||
"pnpm": { | ||
"peerDependencyRules": { | ||
"allowAny": [ | ||
"node-fetch" | ||
] | ||
} | ||
"wxt": "^0.19.11" | ||
}, | ||
"simple-git-hooks": { | ||
"pre-commit": "pnpm lint-staged" | ||
"pre-commit": "bun lint-staged" | ||
}, | ||
"lint-staged": { | ||
"*": "prettier --write" | ||
|
Oops, something went wrong.