Skip to content

Commit c70be6a

Browse files
committed
Init commit
1 parent 8a2b0a7 commit c70be6a

File tree

111 files changed

+10076
-1726
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+10076
-1726
lines changed

.claude/settings.local.json

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/npm-publish.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Publish npm
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
npm:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: 20
16+
registry-url: "https://registry.npmjs.org"
17+
18+
- name: Publish npm package
19+
working-directory: npm
20+
run: |
21+
VERSION="${{ github.event.release.tag_name }}"
22+
VERSION="${VERSION#v}"
23+
npm version "$VERSION" --no-git-tag-version
24+
npm publish --access public
25+
env:
26+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ jobs:
3030
env:
3131
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3232
HOMEBREW_TAP_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }}
33+

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Binary
2+
/hs
3+
/hs.exe
24
/helpscout
35
/helpscout.exe
46
/build/
@@ -7,10 +9,16 @@
79
.idea/
810
.vscode/
911
*.swp
12+
.claude/
13+
14+
# Debug
15+
hs-debug.log
1016

1117
# OS
1218
.DS_Store
1319
Thumbs.db
1420

1521
# Go
1622
/dist/
23+
24+
.agents

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2026 Pinch
3+
Copyright (c) 2026 Ross Morsali
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)