Skip to content

Commit

Permalink
chore: rename remaining packages and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
maneike committed Nov 19, 2024
1 parent 7489b8f commit 9f062c2
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 240 deletions.
2 changes: 1 addition & 1 deletion .changeset/clean-frogs-poke.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
'stplr-core': minor
---

Configure create-stapler-app package
Configure stplr package
2 changes: 1 addition & 1 deletion .changeset/new-eggs-cheat.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
'stplr-core': patch
---

Added separate bundled create-stapler-app package
Added separate bundled stplr package
2 changes: 1 addition & 1 deletion .changeset/selfish-cheetahs-vanish.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
'stplr-core': patch
---

use index file from create-stapler-app
use index file from stplr
2 changes: 1 addition & 1 deletion .changeset/warm-peas-behave.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
'stplr': minor
---

Add dependencies to create-stapler-app package.json
Add dependencies to stplr package.json
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "create-stapler-app",
"name": "stplr",
"description": "Stapler: an amazing CLI tool that scaffolds an entire fullstack app for you",
"version": "0.1.0",
"private": true,
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,13 +147,13 @@

### Minor Changes

- Configure create-stapler-app package
- Configure stplr package

## 0.2.0-alpha.2

### Patch Changes

- Added separate bundled create-stapler-app package
- Added separate bundled stplr package
- Updated dependencies
- [email protected]

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Create Stapler App 🖇️
# Stapler 🖇️

**Stapler** is a CLI tool that scaffolds an entire fullstack app.
It integrates **Next.js**, **Supabase**, **Vercel**, and more, just by running a single command.
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const displayHeader = () => {
const program = new Command();

program
.name('create-stapler-app')
.name('stplr')
.description(
'CLI tool to bootstrap an app with a variety of integrated steps. This tool guides you through the entire process of initializing, configuring, and deploying a new project.',
)
Expand Down
4 changes: 2 additions & 2 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,13 @@

### Minor Changes

- Configure create-stapler-app package
- Configure stplr package

## 0.2.0-alpha.2

### Patch Changes

- Added separate bundled create-stapler-app package
- Added separate bundled stplr package

## 0.2.0-alpha.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const moveFilesToAppDir = async () => {
spinner.succeed('Files moved.');
} catch (error) {
spinner.fail(
'Failed to move files from ./app to ./app/(app). Please move the files manually and re-run "create-stapler-app".',
'Failed to move files from ./app to ./app/(app). Please move the files manually and re-run "stplr".',
);
console.error(error);
}
Expand Down
4 changes: 2 additions & 2 deletions packages/core/installMachine/installSteps/supabase/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const supabaseLogin = async () => {
spinner.succeed('Logged in successfully.');
} catch {
spinner.fail('Failed to log in to Supabase.');
console.error('Please log in manually with "supabase login" and re-run "create-stapler-app".');
console.error('Please log in manually with "supabase login" and re-run "stplr".');
process.exit(1);
}
}
Expand All @@ -37,7 +37,7 @@ const initializeSupabaseProject = async () => {
} else {
spinner.fail('Failed to initialize project.');
console.error(
'Please review the error message below, follow the initialization instructions, and try running "create-stapler-app" again.',
'Please review the error message below, follow the initialization instructions, and try running "stplr" again.',
);
process.exit(1);
}
Expand Down
2 changes: 1 addition & 1 deletion packages/core/installMachine/installSteps/vercel/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const loginIfNeeded = async () => {
spinner.fail('Failed to log in.');
logger.log('vercel', [
'Please check the error above and try again.',
'\nAfter successfully logging in with "vercel login", please run create-stapler-app again.\n',
'\nAfter successfully logging in with "vercel login", please run stplr again.\n',
]);
process.exit(1);
}
Expand Down
225 changes: 0 additions & 225 deletions packages/core/package-lock.json

This file was deleted.

0 comments on commit 9f062c2

Please sign in to comment.