-
-
Notifications
You must be signed in to change notification settings - Fork 478
Adding sqlc advanced option #401
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
eggplannt
wants to merge
36
commits into
Melkeydev:blueprint_ui
Choose a base branch
from
eggplannt:sqlc
base: blueprint_ui
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
f402c46
WIP: tailwindcss v4
arafays 5aec066
WIP: react + tailwindcss done
arafays a9997b5
fix: correct path
arafays a1f55e4
update docs
arafays 829a14d
Fixed a bug where the interupt signal was still being captured and no…
joncalhoun 1651f2c
Fix Melkeydev#115 Pull request missing pq driver replacement
DLTADragonHawk e478069
more transparent error message when executing command
agungfir98 0625a01
docs actions update (#389)
Ujstor e7af940
go 1.23.0 (#390)
Ujstor 99288d3
fix: dont install less than v4 (#391)
arafays d68f777
fix typos/grammar and remove duplicate text (#393)
0x4D5352 83092ca
feat: add flag completions (#395)
Ethanol48 99ce129
Fixed no git on system panic even if git flag is skip (#396)
ScaryFrogg 6656177
initial implimentation
eggplannt 241bb13
undo make packageName public
eggplannt fd7ef8a
hotfix
eggplannt 6b34dfd
edited linter
eggplannt 4294896
hotfix
eggplannt 5e61afe
forgot to check if sqlc enabled
eggplannt 51fbd7a
Fix docker build process (#403)
FabricSoul 89715fb
update htmx version v2.0.5 (#406)
github-actions[bot] d1d5c2c
Create FUNDING.yml
Melkeydev 5c2b505
remove duplicate 'The' word (#408)
sawatkins 0c1cc7f
update htmx version v2.0.6 (#409)
github-actions[bot] 1c07733
Add tailwind config for LSP support in templ files (#413)
BlueBlizzardd 3a472b4
tailwind docker config (#407)
Ujstor d16fa29
Release to NPM (#414)
abelpenton 98f8d0a
cleaned up sqlc support check
eggplannt 6304a75
avoid breaking changes
eggplannt ebd54fa
ci: add npm provenance (#415)
NachoVazquez 03bdd5b
remove tag reference from npm release (#417)
abelpenton 81f56f8
Adding NPM Melkeydev organization scope (#418)
abelpenton 97eadb7
Merge remote-tracking branch 'upstream/main' into sqlc
vorosdev d2ec813
Add sqlc documentation
vorosdev f89c3a3
update readme
vorosdev 59dd672
Merge pull request #3 from vorosdev/sqlc
eggplannt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # These are supported funding model platforms | ||
|
|
||
| github: [melkeydev] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| name: npm-publish | ||
|
|
||
| on: | ||
| workflow_call: | ||
| inputs: | ||
| tag: | ||
| description: "Release tag to publish (e.g., v1.0.0)" | ||
| required: true | ||
| type: string | ||
| workflow_dispatch: | ||
| inputs: | ||
| tag: | ||
| description: "Release tag to publish (e.g., v1.0.0)" | ||
| required: true | ||
| type: string | ||
|
|
||
| jobs: | ||
| npm-publish: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| id-token: write | ||
| env: | ||
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 22 | ||
| registry-url: "https://registry.npmjs.org" | ||
|
|
||
| - name: Download release assets | ||
| run: | | ||
| TAG="${{ inputs.tag }}" | ||
| VERSION=${TAG#v} | ||
| mkdir -p dist | ||
| gh release download "$TAG" --dir dist | ||
| echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| - name: Create npm packages | ||
| run: | | ||
| chmod +x ./scripts/create-npm-packages.sh | ||
| ./scripts/create-npm-packages.sh "$VERSION" | ||
|
|
||
| - name: Publish platform-specific packages to npm | ||
| run: | | ||
| for platform_dir in platform-packages/go-blueprint-*; do | ||
| if [ -d "$platform_dir" ]; then | ||
| cd "$platform_dir" | ||
| npm publish --provenance --access public | ||
| cd - > /dev/null | ||
| fi | ||
| done | ||
|
|
||
| - name: Publish main package to npm | ||
| run: | | ||
| cd npm-package | ||
| npm publish --provenance --access public | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the rename here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because I needed to use the 'steps' package later