We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ad5af7 commit 1928228Copy full SHA for 1928228
.github/workflows/npm-publish.yaml
@@ -21,6 +21,7 @@ jobs:
21
registry-url: "https://registry.npmjs.org"
22
23
- run: npm ci
24
+ - run: npm run type-check
25
- run: npm test
26
- run: npm run build
27
package.json
@@ -32,6 +32,7 @@
32
"LICENSE"
33
],
34
"scripts": {
35
+ "type-check": "tsc --noEmit",
36
"build": "vite build",
37
"test": "vitest --disable-console-intercept",
38
"test:update": "vitest -u",
src/works/index.ts
@@ -47,7 +47,6 @@ import {
47
parseArchiveId,
48
isValidArchiveIdOrNullish,
49
} from "src/utils";
50
-import { getWorkUrl } from "../../dist/urls";
51
52
export const getWork = async ({
53
workId,
0 commit comments