We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 156a94a commit 05376eaCopy full SHA for 05376ea
.github/workflows/nodejs-publish.yml
@@ -34,10 +34,17 @@ jobs:
34
env:
35
HUSKY: 0
36
37
+ - name: Authenticate to npm
38
+ run: |
39
+ printf "//registry.npmjs.org/:_authToken=${NPM_TOKEN}\n" >> ~/.npmrc
40
+ env:
41
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
42
+
43
- name: Build
44
run: pnpm -w build
45
46
- name: Publish with Changesets
47
run: pnpm release
48
49
NPM_CONFIG_PROVENANCE: true
50
packages/unplugin/package.json
@@ -88,6 +88,9 @@
88
"url": "https://github.com/user/react-code-view.git",
89
"directory": "packages/unplugin"
90
},
91
+ "publishConfig": {
92
+ "access": "public"
93
+ },
94
"scripts": {
95
"build": "tsup",
96
"dev": "tsup --watch",
0 commit comments