Skip to content

Commit f4811e5

Browse files
committed
Add workaround for Shiki being a DOM project
1 parent aa613ca commit f4811e5

10 files changed

+39
-18
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
node-version: ${{ matrix.node }}
1717
- name: Install
18-
run: npm ci --legacy-peer-deps
18+
run: npm ci
1919
- name: Build
2020
run: npm run build
2121
- name: Test
@@ -43,7 +43,7 @@ jobs:
4343
- name: Upgrade npm
4444
run: npm i -g npm@latest
4545
- name: Install
46-
run: npm ci --legacy-peer-deps
46+
run: npm ci
4747
- name: Build
4848
run: npm run build
4949
- name: Test

.github/workflows/publish-beta.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: npm i -g npm@latest
2525
- name: Install
2626
if: steps.check.outputs.changed == 'true' && contains(steps.check.outputs.version, 'beta')
27-
run: npm ci --legacy-peer-deps
27+
run: npm ci
2828
- name: Setup publish token
2929
if: steps.check.outputs.changed == 'true' && contains(steps.check.outputs.version, 'beta')
3030
run: echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" > .npmrc

.github/workflows/publish-lts.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: npm i -g npm@latest
2525
- name: Install
2626
if: steps.check.outputs.changed == 'true'
27-
run: npm ci --legacy-peer-deps
27+
run: npm ci
2828
- name: Setup publish token
2929
if: steps.check.outputs.changed == 'true'
3030
run: echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" > .npmrc

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
node-version: "18"
2424
- name: Install
2525
if: steps.check.outputs.changed == 'true'
26-
run: npm ci --legacy-peer-deps
26+
run: npm ci
2727
- name: Setup publish token
2828
if: steps.check.outputs.changed == 'true'
2929
run: echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" > .npmrc

.github/workflows/visual-regression.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
run: |
1717
git fetch
1818
git checkout origin/$GITHUB_BASE_REF
19-
npm ci --legacy-peer-deps
19+
npm ci
2020
npm run build
2121
node dist/test/capture-screenshots.js
2222
npm run test:visual:accept
2323
2424
- name: Get current screenshots
2525
run: |
2626
git checkout $GITHUB_SHA
27-
npm ci --legacy-peer-deps
27+
npm ci
2828
npm run build
2929
node dist/test/capture-screenshots.js
3030
- name: Test

.npmrc

+3
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@
33
# an install, so just turn it off. We can still check for findings
44
# with npm audit --production.
55
audit = false
6+
7+
# While we're on the TS beta, need this flag.
8+
legacy-peer-deps = true

package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"lunr": "^2.3.9",
2828
"markdown-it": "^14.1.0",
2929
"minimatch": "^9.0.4",
30-
"shiki": "^1.3.0"
30+
"shiki": "^1.4.0"
3131
},
3232
"peerDependencies": {
3333
"typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x"

src/lib/types/shiki/shiki.d.ts

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// Shiki 1.x declares a `loadWasm` function which takes these types as input.
2+
// They are declared in the DOM library, but since TypeDoc doesn't use that library,
3+
// we have to declare some shims, intentionally crafted to not be accidentally
4+
// constructed.
5+
6+
declare namespace WebAssembly {
7+
interface Instance {
8+
__shikiHack: never;
9+
exports: unknown;
10+
}
11+
interface WebAssemblyInstantiatedSource {
12+
__shikiHack: never;
13+
}
14+
type ImportValue = unknown;
15+
}
16+
17+
interface Response {
18+
__shikiHack: never;
19+
}

tsconfig.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
// Speed up dev compilation time
1111
"incremental": true,
1212
"tsBuildInfoFile": "dist/.tsbuildinfo",
13-
// Shiki's types are broken again, https://github.com/shikijs/shiki/issues/665
14-
"skipLibCheck": true,
13+
"skipLibCheck": false,
1514

1615
"strict": true,
1716
"alwaysStrict": true,

0 commit comments

Comments
 (0)