Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed Jan 21, 2024
1 parent 0380fae commit 22efba2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
- name: Type Check
run: pnpm compile

- name: Lint
run: pnpm lint

- name: Build
run: pnpm build

- name: Lint
run: pnpm lint

- name: Test
run: pnpm test

Expand Down
12 changes: 12 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,18 @@
"bin": {
"publish-extension": "bin/publish-extension.cjs"
},
"exports": [
{
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
],
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
Expand Down

0 comments on commit 22efba2

Please sign in to comment.