Skip to content

Commit

Permalink
fix: github release action
Browse files Browse the repository at this point in the history
  • Loading branch information
suhaotian committed Feb 20, 2024
1 parent e4e6030 commit 241f669
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# CHANGELOG 📝

## v0.0.4 2024-02-20
## v0.0.5 2024-02-20

- fix: github actions release

## v0.0.4

- feat: support url as first paramter in xiorInstance.request('/url')
- feat: mark `headers` and `params` types as `Record<string, any>` and not undefined in interceptors
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xior",
"version": "0.0.4",
"version": "0.0.5",
"description": "Axios similiar API request library but based on fetch",
"repository": "suhaotian/xior",
"bugs": "https://github.com/suhaotian/xior/issues",
Expand All @@ -19,7 +19,7 @@
"build:lib": "rm -rf lib && tsc --project tsconfig.json",
"test": "pnpm build:lib && node --test",
"checktype": "tsc --noEmit",
"start-publish": "pnpm test && npm publish --registry=https://registry.npmjs.org",
"start-publish": "pnpm build && pnpm test && npm publish --registry=https://registry.npmjs.org",
"push": "git push && git lfs push --all origin",
"prepare": "is-ci || pnpm build && husky"
},
Expand Down

0 comments on commit 241f669

Please sign in to comment.