-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1be7511
commit 39fc149
Showing
30 changed files
with
1,525 additions
and
273 deletions.
There are no files selected for viewing
This file contains 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,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) |
This file contains 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,11 @@ | ||
--- | ||
"@basica/fastify": patch | ||
"@basica/ioredis": patch | ||
"@basica/kysely": patch | ||
"@basica/pg": patch | ||
"@basica/telemetry": patch | ||
"@basica/config": patch | ||
"@basica/core": patch | ||
--- | ||
|
||
Initial version |
This file contains 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,10 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": "@changesets/changelog-github", | ||
"commit": false, | ||
"fixed": [], | ||
"linked": [], | ||
"access": "public", | ||
"updateInternalDependencies": "patch", | ||
"ignore": [] | ||
} |
This file contains 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 was deleted.
Oops, something went wrong.
This file contains 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,43 @@ | ||
name: Release | ||
on: | ||
workflow_run: | ||
workflows: ["CI"] | ||
types: [completed] | ||
branches: | ||
- master | ||
concurrency: ${{ github.workflow }}-${{ github.ref }} | ||
env: | ||
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | ||
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | ||
jobs: | ||
changesets: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: ./.github/actions/base | ||
- run: pnpm build | ||
- uses: changesets/action@v1 | ||
with: | ||
publish: pnpm build && pnpm exec changesets publish | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
docs: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/base | ||
- run: pnpm build --filter docs | ||
- uses: actions/configure-pages@v4 | ||
- uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: packages/docs/build | ||
- uses: actions/deploy-pages@v4 |
This file contains 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 |
---|---|---|
|
@@ -12,5 +12,9 @@ | |
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"dependencies": { | ||
"@changesets/changelog-github": "^0.5.0", | ||
"@changesets/cli": "^2.27.1" | ||
} | ||
} | ||
} |
This file contains 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 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 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 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 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 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 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 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 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 |
---|---|---|
@@ -1,39 +1,39 @@ | ||
{ | ||
"name": "bench-crud-basica-fastify", | ||
"version": "0.0.1", | ||
"private": true, | ||
"author": "Nicola Bovolato", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=18.0.0" | ||
}, | ||
"scripts": { | ||
"start": "node dist/src/index.js", | ||
"dev": "DB_CONNECTIONTIMEOUTMILLIS=1000 DB_CONNECTIONSTRING=postgres://postgres:postgres@localhost:5432/postgres tsx watch --inspect src/index.ts | pino-pretty -c -t", | ||
"build": "tsup-node src/index.ts migrations/*.ts", | ||
"lint": "tsc --noEmit && eslint \"{src,migrations}/**/*.ts\"" | ||
}, | ||
"dependencies": { | ||
"@basica/config": "workspace:^", | ||
"@basica/core": "workspace:*", | ||
"@basica/fastify": "workspace:*", | ||
"@basica/kysely": "workspace:^", | ||
"@basica/pg": "workspace:^", | ||
"@fastify/type-provider-typebox": "^4.0.0", | ||
"@sinclair/typebox": "^0.32.16", | ||
"fastify": "^4.26.2", | ||
"kysely": "^0.27.2", | ||
"pg": "^8.11.3" | ||
}, | ||
"devDependencies": { | ||
"@basica/eslint-config": "workspace:*", | ||
"@basica/typescript-config": "workspace:*", | ||
"@types/node": "^20.11.17", | ||
"@types/pg": "^8.11.0", | ||
"eslint": "^8.56.0", | ||
"pino-pretty": "^10.3.1", | ||
"tsup": "^8.0.2", | ||
"tsx": "^4.7.1", | ||
"typescript": "^5.3.3" | ||
} | ||
} | ||
"name": "bench-crud-basica-fastify", | ||
"version": "0.0.0", | ||
"private": true, | ||
"author": "Nicola Bovolato", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=18.0.0" | ||
}, | ||
"scripts": { | ||
"start": "node dist/src/index.js", | ||
"dev": "DB_CONNECTIONTIMEOUTMILLIS=1000 DB_CONNECTIONSTRING=postgres://postgres:postgres@localhost:5432/postgres tsx watch --inspect src/index.ts | pino-pretty -c -t", | ||
"build": "tsup-node src/index.ts migrations/*.ts", | ||
"lint": "tsc --noEmit && eslint \"{src,migrations}/**/*.ts\"" | ||
}, | ||
"dependencies": { | ||
"@basica/config": "workspace:^", | ||
"@basica/core": "workspace:*", | ||
"@basica/fastify": "workspace:*", | ||
"@basica/kysely": "workspace:^", | ||
"@basica/pg": "workspace:^", | ||
"@fastify/type-provider-typebox": "^4.0.0", | ||
"@sinclair/typebox": "^0.32.16", | ||
"fastify": "^4.26.2", | ||
"kysely": "^0.27.2", | ||
"pg": "^8.11.3" | ||
}, | ||
"devDependencies": { | ||
"@basica/eslint-config": "workspace:*", | ||
"@basica/typescript-config": "workspace:*", | ||
"@types/node": "^20.11.17", | ||
"@types/pg": "^8.11.0", | ||
"eslint": "^8.56.0", | ||
"pino-pretty": "^10.3.1", | ||
"tsup": "^8.0.2", | ||
"tsx": "^4.7.1", | ||
"typescript": "^5.3.3" | ||
} | ||
} |
This file contains 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 |
---|---|---|
@@ -1,33 +1,33 @@ | ||
{ | ||
"name": "bench-crud-fastify", | ||
"version": "0.0.1", | ||
"private": true, | ||
"author": "Nicola Bovolato", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=18.0.0" | ||
}, | ||
"scripts": { | ||
"start": "node dist/src/index.js", | ||
"dev": "DB_CONNECTIONTIMEOUTMILLIS=1000 DB_CONNECTIONSTRING=postgres://postgres:postgres@localhost:5432/postgres tsx watch --inspect src/index.ts | pino-pretty -c -t", | ||
"build": "tsup-node src/index.ts migrations/*.ts", | ||
"lint": "tsc --noEmit && eslint \"{src,migrations}/**/*.ts\"" | ||
}, | ||
"dependencies": { | ||
"@fastify/type-provider-typebox": "^4.0.0", | ||
"fastify": "^4.26.2", | ||
"kysely": "^0.27.2", | ||
"pg": "^8.11.3" | ||
}, | ||
"devDependencies": { | ||
"@basica/eslint-config": "workspace:*", | ||
"@basica/typescript-config": "workspace:*", | ||
"@types/node": "^20.11.17", | ||
"@types/pg": "^8.11.0", | ||
"eslint": "^8.56.0", | ||
"pino-pretty": "^10.3.1", | ||
"tsup": "^8.0.2", | ||
"tsx": "^4.7.1", | ||
"typescript": "^5.3.3" | ||
} | ||
} | ||
"name": "bench-crud-fastify", | ||
"version": "0.0.0", | ||
"private": true, | ||
"author": "Nicola Bovolato", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=18.0.0" | ||
}, | ||
"scripts": { | ||
"start": "node dist/src/index.js", | ||
"dev": "DB_CONNECTIONTIMEOUTMILLIS=1000 DB_CONNECTIONSTRING=postgres://postgres:postgres@localhost:5432/postgres tsx watch --inspect src/index.ts | pino-pretty -c -t", | ||
"build": "tsup-node src/index.ts migrations/*.ts", | ||
"lint": "tsc --noEmit && eslint \"{src,migrations}/**/*.ts\"" | ||
}, | ||
"dependencies": { | ||
"@fastify/type-provider-typebox": "^4.0.0", | ||
"fastify": "^4.26.2", | ||
"kysely": "^0.27.2", | ||
"pg": "^8.11.3" | ||
}, | ||
"devDependencies": { | ||
"@basica/eslint-config": "workspace:*", | ||
"@basica/typescript-config": "workspace:*", | ||
"@types/node": "^20.11.17", | ||
"@types/pg": "^8.11.0", | ||
"eslint": "^8.56.0", | ||
"pino-pretty": "^10.3.1", | ||
"tsup": "^8.0.2", | ||
"tsx": "^4.7.1", | ||
"typescript": "^5.3.3" | ||
} | ||
} |
Oops, something went wrong.