Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix publish error #1

Merged
merged 1 commit into from
Apr 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ jobs:
run: |
pnpm exec lerna run build
# ------- lerna publish to npm
# - name: Switch to private npm registry
# uses: actions/setup-node@v3
# - name: Publish
# run: |
# pnpm exec lerna publish from-git --yes
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Switch to private npm registry
uses: actions/setup-node@v3
- name: Publish
run: |
pnpm exec lerna publish from-git --yes
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
16 changes: 14 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,17 @@
},
"workspaces": [
"packages/*"
]
}
],
"description": "Kit for web develop.",
"bugs": {
"url": "https://github.com/yugasun/kit/issues"
},
"homepage": "https://github.com/yugasun/kit#readme",
"keywords": [
"kit",
"web-develop",
"crypto"
],
"author": "yugasun",
"license": "MIT"
}
10 changes: 0 additions & 10 deletions packages/crypto/CHANGELOG.md

This file was deleted.

5 changes: 4 additions & 1 deletion packages/crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"name": "@ygkit/crypto",
"version": "0.2.0",
"version": "0.0.0",
"publishConfig": {
"access": "public"
},
"description": "crypto",
"module": "dist/index.mjs",
"main": "dist/index.js",
Expand Down