-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
♻️ Use bun, biome, better ts config, new license and remove all barre…
- Loading branch information
1 parent
706a095
commit 10750f5
Showing
2,870 changed files
with
120,368 additions
and
131,287 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
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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Publish @typebot.io/js package to NPM | |
on: | ||
push: | ||
tags: | ||
- 'js-v*' | ||
- "js-v*" | ||
|
||
jobs: | ||
publish: | ||
|
@@ -12,7 +12,7 @@ jobs: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: pnpm/action-setup@v4 | ||
- run: pnpm i --frozen-lockfile | ||
- run: pnpm turbo build [email protected]/js... | ||
- run: cd packages/embeds/js && pnpm publish --no-git-checks --access public | ||
- uses: oven-sh/setup-bun@v2 | ||
- run: bun install | ||
- run: bunx turbo build [email protected]/js... | ||
- run: cd packages/embeds/js && bun run npm publish --no-git-checks --access public |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Publish @typebot.io/nextjs package to NPM | |
on: | ||
push: | ||
tags: | ||
- 'nextjs-v*' | ||
- "nextjs-v*" | ||
|
||
jobs: | ||
publish: | ||
|
@@ -12,7 +12,7 @@ jobs: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: pnpm/action-setup@v4 | ||
- run: pnpm i --frozen-lockfile | ||
- run: pnpm turbo build [email protected]/nextjs... | ||
- run: cd packages/embeds/nextjs && pnpm publish --no-git-checks --access public | ||
- uses: oven-sh/setup-bun@v2 | ||
- run: bun install | ||
- run: bunx turbo build [email protected]/nextjs... | ||
- run: cd packages/embeds/nextjs && bun run npm publish --no-git-checks --access public |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Publish @typebot.io/react package to NPM | |
on: | ||
push: | ||
tags: | ||
- 'react-v*' | ||
- "react-v*" | ||
|
||
jobs: | ||
publish: | ||
|
@@ -12,7 +12,7 @@ jobs: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: pnpm/action-setup@v4 | ||
- run: pnpm i --frozen-lockfile | ||
- run: pnpm turbo build [email protected]/react... | ||
- run: cd packages/embeds/react && pnpm publish --no-git-checks --access public | ||
- uses: oven-sh/setup-bun@v2 | ||
- run: bun install | ||
- run: bunx turbo build [email protected]/react... | ||
- run: cd packages/embeds/react && bun run npm publish --no-git-checks --access public |
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 |
---|---|---|
|
@@ -40,4 +40,10 @@ snapshots | |
.env | ||
.typebot-build | ||
|
||
.tolgee | ||
.tolgee | ||
|
||
*.tsbuildinfo | ||
|
||
.tsup | ||
|
||
.env.docker |
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,4 +1 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
pnpm lint && pnpm format:check | ||
bun pre-commit |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,2 @@ | ||
bun = "1.1.29" | ||
node = "20.17.0" |
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,10 +1,8 @@ | ||
{ | ||
"recommendations": [ | ||
"esbenp.prettier-vscode", | ||
"dbaeumer.vscode-eslint", | ||
"bradlc.vscode-tailwindcss", | ||
"unifiedjs.vscode-mdx", | ||
"lokalise.i18n-ally", | ||
"Prisma.prisma" | ||
"Prisma.prisma", | ||
"biomejs.biome" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,17 +1,26 @@ | ||
{ | ||
"i18n-ally.localesPaths": ["apps/builder/src/i18n"], | ||
"i18n-ally.keystyle": "flat", | ||
"i18n-ally.displayLanguage": "en", | ||
"i18n-ally.enabledFrameworks": ["custom"], | ||
"i18n-ally.sortKeys": true, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "explicit" | ||
}, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true, | ||
"editor.tabSize": 2, | ||
"typescript.updateImportsOnFileMove.enabled": "always", | ||
"[prisma]": { | ||
"editor.defaultFormatter": "Prisma.prisma" | ||
} | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"typescript.preferences.autoImportFileExcludePatterns": [ | ||
"next/router.d.ts", | ||
"next/dist/client/router.d.ts" | ||
], | ||
"editor.defaultFormatter": "biomejs.biome", | ||
"[javascript]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "biomejs.biome" | ||
}, | ||
"editor.codeActionsOnSave": { | ||
"quickfix.biome": "explicit", | ||
"source.organizeImports.biome": "explicit" | ||
}, | ||
"eslint.enable": false, | ||
"prettier.enable": false | ||
} |
Oops, something went wrong.