0.1.0 #1

Merged
Thilawyn merged 87 commits from next into master 2025-01-18 00:54:42 +01:00
3 changed files with 10 additions and 6 deletions
Showing only changes of commit 240c83eacb - Show all commits

View File

@@ -15,15 +15,18 @@ jobs:
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: npm run build
run: |
cd packages/reffuse
bun run build
- name: Publish
run: |
cd packages/reffuse
npm config set @thilawyn:registry https://git.valverde.cloud/api/packages/thilawyn/npm/
npm config set -- //git.valverde.cloud/api/packages/thilawyn/npm/:_authToken "${{ vars.NODE_AUTH_TOKEN }}"
npm publish
npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

View File

@@ -18,7 +18,9 @@ jobs:
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
run: |
cd packages/reffuse
bun run build
- name: Pack
run: |
cd packages/reffuse

View File

@@ -2,7 +2,6 @@
"private": true,
"workspaces": ["./packages/*"],
"scripts": {
"build": "bun run --filter 'reffuse' build",
"lint:tsc": "bun run --filter '*' lint:tsc",
"clean:cache": "rm -f tsconfig.tsbuildinfo",
"clean:dist": "rm -rf dist",