Skip to content

Commit

Permalink
fix: publish config
Browse files Browse the repository at this point in the history
  • Loading branch information
hemengke1997 committed Jan 4, 2023
1 parent 187246a commit ff4bb1c
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
token: ${{ secrets.ACCESS_TOKEN }}
fetch-depth: 0

- name: Install pnpm
uses: pnpm/action-setup@v2.0.1
Expand All @@ -41,4 +44,4 @@ jobs:
- name: Publish to NPM
run: pnpm -r publish --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
node_modules
.DS_Store
dist
dist-ssr
*.local
.vscode
1 change: 0 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
registry=https://registry.npm.taobao.org
strict-peer-dependencies=false
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## [2.6.3](https://github.com/hemengke1997/use-antd-resizable-header/compare/v2.6.2...v2.6.3) (2023-01-04)



## [2.6.2](https://github.com/hemengke1997/use-antd-resizable-header/compare/v2.6.1...v2.6.2) (2023-01-04)


### Bug Fixes

* deps ([be75cf8](https://github.com/hemengke1997/use-antd-resizable-header/commit/be75cf8f686b1daa4e9f6516d9ce4135d0403dba))



## [2.6.1](https://github.com/hemengke1997/use-antd-resizable-header/compare/v2.6.0...v2.6.1) (2023-01-04)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"precommit": "lint-staged",
"prettier": "prettier -c --write \"src/**/*\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"bump": "npm run changelog && bumpp package.json --commit --push --tag -all",
"bump": "npm run changelog && bumpp package.json -all --commit --push --tag && pushchangelog",
"pushchangelog": "git add . && git commit -m \"chore: changelog\" && git push",
"upgrade:deps": "pnpm up -i --latest"
},
Expand Down
1 change: 0 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import path from 'path'

const env = process.env.NODE_ENV

// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
define: {
Expand Down

0 comments on commit ff4bb1c

Please sign in to comment.