We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9f8496 commit eeb2a44Copy full SHA for eeb2a44
2 files changed
.github/workflows/publish.yml
@@ -46,11 +46,10 @@ jobs:
46
env:
47
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
49
- # Uncomment below when ready to publish to npm
50
- # - name: Build and publish to npm
51
- # if: startsWith(github.ref, 'refs/tags/v')
52
- # run: |
53
- # pnpm build
54
- # npm publish --access public
55
- # env:
56
- # NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
+ - name: Build and publish to npm
+ if: startsWith(github.ref, 'refs/tags/v')
+ run: |
+ pnpm build
+ npm publish --access public
+ env:
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
.vscode/settings.json
@@ -0,0 +1,10 @@
1
+{
2
+ "files.exclude": {
3
+ "**/.git": true,
4
+ "**/.svn": true,
5
+ "**/.hg": true,
6
+ "**/.DS_Store": true,
7
+ "**/Thumbs.db": true,
8
+ "**/node_modules": true
9
+ }
10
+}
0 commit comments