Skip to content

Commit

Permalink
chore: enable verbatim module syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Jan 3, 2024
1 parent 4c1977e commit 6a248f8
Show file tree
Hide file tree
Showing 6 changed files with 1,504 additions and 1,327 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
cache: pnpm

- name: Install
run: pnpm i
run: pnpm install

- name: Lint
run: pnpm run lint
Expand All @@ -37,7 +37,7 @@ jobs:
cache: pnpm

- name: Install
run: pnpm i
run: pnpm install

- name: Typecheck
run: pnpm run test:types
Expand All @@ -60,7 +60,7 @@ jobs:
cache: pnpm

- name: Install
run: pnpm i
run: pnpm install

- name: Test
run: pnpm run test
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
cache: pnpm

- name: Install
run: pnpm i
run: pnpm install

- name: Build
run: pnpm run build
Expand Down
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import antfu from '@antfu/eslint-config'

export default antfu({
export default await antfu({
ignores: ['tsconfig.json'],
})
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "unrested",
"type": "module",
"version": "1.0.3",
"packageManager": "pnpm@8.10.2",
"packageManager": "pnpm@8.14.0",
"description": "Minimal, type-safe REST client using JS proxies",
"author": "Johann Schopplich <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -52,16 +52,16 @@
},
"dependencies": {
"ofetch": "^1.3.3",
"ufo": "^1.3.1"
"ufo": "^1.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^1.1.0",
"bumpp": "^9.2.0",
"eslint": "^8.53.0",
"h3": "^1.8.2",
"@antfu/eslint-config": "^2.6.1",
"bumpp": "^9.2.1",
"eslint": "^8.56.0",
"h3": "^1.9.0",
"listhen": "^1.5.5",
"typescript": "^5.2.2",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^0.34.6"
"vitest": "^1.1.1"
}
}
Loading

0 comments on commit 6a248f8

Please sign in to comment.