0.1.13 #18

Merged
Thilawyn merged 359 commits from next into master 2025-06-18 00:12:19 +02:00
2 changed files with 17 additions and 10 deletions
Showing only changes of commit 5b023678f4 - Show all commits

View File

@@ -11,18 +11,23 @@ jobs:
steps:
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
registry-url: "https://registry.npmjs.org"
- name: Clone repo
uses: actions/checkout@v4
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
- name: Publish
run: bun run publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish reffuse
uses: JS-DevTools/npm-publish@v3
with:
package: packages/reffuse
access: public
token: ${{ secrets.NPM_TOKEN }}
registry: https://registry.npmjs.org
- name: Publish @reffuse/extension-lazyref
uses: JS-DevTools/npm-publish@v3
with:
package: packages/extension-lazyref
access: public
token: ${{ secrets.NPM_TOKEN }}
registry: https://registry.npmjs.org

View File

@@ -7,6 +7,8 @@
"outputs": ["./dist/**"]
},
"pack": {},
"publish": {}
"publish": {
"passThroughEnv": ["NODE_AUTH_TOKEN"]
}
}
}