Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"./apps/cli": "0.0.1"
"apps/cli": "1.0.0"
}
12 changes: 5 additions & 7 deletions .github/release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "node",
"include-v-in-tag": true,
"separate-pull-requests": false,
"extra-files": [],
"pull-request-title-pattern": "chore: release v${version}",
"group-pull-request-title-pattern": "chore: release v${version}",
"pull-request-title-pattern": "chore${scope}: release${component} ${version}",
"plugins": ["node-workspace"],
"packages": {
".": {
"apps/cli": {
"release-type": "node",
"changelog-sections": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance" },
{ "type": "refactor", "section": "Refactor" },
{ "type": "chore", "section": "Miscellaneous" },
{ "type": "docs", "section": "Documentation" }
],
"release-type": "node"
]
}
}
}
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ jobs:
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
cd apps/cli
npm publish --access public
bunx npm publish --access public
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
uses: googleapis/release-please-action@v4
id: release
with:
release-type: node
token: ${{ secrets.GITHUB_TOKEN }}
config-file: .github/release-please-config.json
manifest-file: .github/.release-please-manifest.json
Expand Down Expand Up @@ -68,6 +67,7 @@ jobs:
run: bun run build:cli

- name: "📦 Create Distribution Archive"
working-directory: apps/cli
run: bun pm pack --ignore-scripts --filename create-faster-${{ needs.create-release.outputs.version }}.tar.gz

- name: "📤 Upload Release Asset"
Expand All @@ -76,6 +76,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ needs.create-release.outputs.tag_name }}
files: create-faster-${{ needs.create-release.outputs.version }}.tar.gz
files: apps/cli/create-faster-${{ needs.create-release.outputs.version }}.tar.gz
make_latest: true
generate_release_notes: true
24 changes: 24 additions & 0 deletions apps/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Changelog

## 1.0.0 (2025-10-24)


### Features

* creaaateeee fasteeeeeeer ([ecade7a](https://github.com/plvo/create-faster/commit/ecade7acc565ad0085c3a6d5f7aa8bfa014c2067))
* implement context-aware filtering and enhance CLI prompts ([#3](https://github.com/plvo/create-faster/issues/3)) ([a5df6bd](https://github.com/plvo/create-faster/commit/a5df6bd41b31ea6a1103c2f9dea65136c6b9e890))
* **modules:** nextjs pwa ([4c2283d](https://github.com/plvo/create-faster/commit/4c2283d58b51476ececa6b1c5b4c7a904d7297fb))
* nextjs better-auth module ([#5](https://github.com/plvo/create-faster/issues/5)) ([e117dac](https://github.com/plvo/create-faster/commit/e117dacaf8e9e13ec537d7caf62c89375f4454ff))
* template and cli core logic ([#1](https://github.com/plvo/create-faster/issues/1)) ([ba15574](https://github.com/plvo/create-faster/commit/ba155742e107b32aa755dd523d5610207c7db96f))
* templates, modules, magic comments ([#4](https://github.com/plvo/create-faster/issues/4)) ([3bff411](https://github.com/plvo/create-faster/commit/3bff411c8c34c97d83a8be030a5dceb7fab19ca4))


### Bug Fixes

* **gha:** correct release-please config to track apps/cli ([9542712](https://github.com/plvo/create-faster/commit/9542712cd8b0ac741e8e0507bcea6efe32d8f74c))
* **modules:** mdx ([74f0d91](https://github.com/plvo/create-faster/commit/74f0d915f12169180da216833a13889aadb904ef))


### Refactor

* enhance CLI functionality and update dependencies ([6e490ad](https://github.com/plvo/create-faster/commit/6e490ad9709bddcc3f4688caa6433a2f30c34fa0))
4 changes: 2 additions & 2 deletions apps/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "create-faster",
"description": "A quick way to create a new project",
"version": "0.0.1",
"version": "1.0.0",
"license": "MIT",
"author": "plvo <plvdev@proton.me>",
"private": false,
Expand Down Expand Up @@ -32,7 +32,7 @@
"README.md"
],
"scripts": {
"build": "bun build src/index.ts --outfile create-faster --target bun --production --banner '#!/usr/bin/env node'",
"build": "bun build src/index.ts --outfile create-faster --target node --production --banner '#!/usr/bin/env node'",
"dev": "bun run src/index.ts",
"dev:watch": "bun run src/index.ts --watch",
"prepublishOnly": "bun run build && chmod +x create-faster",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "create-faster-repository",
"description": "A quick way to create a new project",
"version": "1.0.0",
"version": "0.0.0",
"author": "plvo <plvdev@proton.me>",
"license": "MIT",
"private": false,
Expand Down