Skip to content

Commit

Permalink
added changesets
Browse files Browse the repository at this point in the history
  • Loading branch information
fero1xd committed Jun 17, 2024
1 parent b05b936 commit cdf6b4e
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 4 deletions.
Binary file removed .DS_Store
Binary file not shown.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.0.1/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# create-sugarcoat-app

## 0.0.1

### Patch Changes

- First release of sugarcoat
Binary file modified bun.lockb
Binary file not shown.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "create-modern-backend",
"version": "1.0.0",
"name": "create-sugarcoat-app",
"version": "0.0.1",
"description": "",
"exports": "./dist/bin.js",
"type": "module",
"bin": {
"sugarcoat": "./dist/bin.js"
"create-sugarcoat-app": "./dist/bin.js"
},
"scripts": {
"build": "esbuild --bundle src/index.ts --outfile=dist/bin.js --packages=external --format=esm --target=esnext",
Expand Down
2 changes: 1 addition & 1 deletion src/steps/dirs/copyLucia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const copyLucia = async (answers: Answers, absolutePath: string) => {
);
} else {
await fs.copy(
path.join(luciaDir, 'prisma', `index.ts`),
path.join(luciaDir, 'prismaa', `index.ts`),
path.join(remoteAuthDir, 'index.ts')
);
}
Expand Down

0 comments on commit cdf6b4e

Please sign in to comment.