Skip to content

Commit 8ed602b

Browse files
author
aheizi
committed
Merge branch 'main' into batch_clear_history
2 parents 25c4386 + 1c7d239 commit 8ed602b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+3104
-415
lines changed

.github/workflows/code-qa.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,21 @@ jobs:
2828
- name: Lint
2929
run: npm run lint
3030

31+
check-translations:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- name: Checkout code
35+
uses: actions/checkout@v4
36+
- name: Setup Node.js
37+
uses: actions/setup-node@v4
38+
with:
39+
node-version: '18'
40+
cache: 'npm'
41+
- name: Install dependencies
42+
run: npm run install:all
43+
- name: Verify all translations are complete
44+
run: node scripts/find-missing-translations.js
45+
3146
knip:
3247
runs-on: ubuntu-latest
3348
steps:

esbuild.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,14 @@ const extensionConfig = {
7272
copyWasmFiles,
7373
/* add to the end of plugins array */
7474
esbuildProblemMatcherPlugin,
75+
{
76+
name: "alias-plugin",
77+
setup(build) {
78+
build.onResolve({ filter: /^pkce-challenge$/ }, (args) => {
79+
return { path: require.resolve("pkce-challenge/dist/index.browser.js") }
80+
})
81+
},
82+
},
7583
],
7684
entryPoints: ["src/extension.ts"],
7785
format: "cjs",

0 commit comments

Comments
 (0)