Skip to content
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
11 changes: 1 addition & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publish Package

on:
push:
branches: [main]
branches: [ main ]
paths:
- 'package.json'
# Only publish when package.json version changes on main branch
Expand Down Expand Up @@ -89,12 +89,3 @@ jobs:
# Publish to JSR (version should already be synced via Makefile)
- name: Publish to JSR
run: pnpx jsr publish

- name: Create Git Tag
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git tag "v${{ needs.check-version-change.outputs.current-version }}"
git push origin "v${{ needs.check-version-change.outputs.current-version }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@logan/logger",
"version": "1.1.10",
"version": "1.1.11",
"exports": "./src/index.ts",
"compilerOptions": {
"allowJs": true,
Expand Down
2 changes: 1 addition & 1 deletion jsr.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@logan/logger",
"author": "Logan Lindquist Land",
"license": "MIT",
"version": "1.1.10",
"version": "1.1.11",
"description": "Universal TypeScript logging library for all JavaScript runtimes",
"exports": {
".": "./src/index.ts"
Expand Down
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "logan-logger",
"version": "1.1.10",
"version": "1.1.11",
"description": "Universal TypeScript logging library for all JavaScript runtimes",
"main": "dist/index.js",
"module": "dist/index.esm.js",
Expand Down Expand Up @@ -42,9 +42,7 @@
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"bump": "npm version patch",
"publish:jsr": "deno publish --set-version ${npm_package_version:-$(npm pkg get version | tr -d '\"')}"
"typecheck": "tsc --noEmit"
},
"keywords": [
"logging",
Expand Down
Loading