-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: updates deps & postcss esm config * chore(ui): update radix ui deps * chore: updates deps * configDir stuff * feat(tsconfig): configDir include/exclude * fix(marketing): adds paths because vite doesn't support ts configDir yet * fix(web): nextjs doesn't support configDir yet * chore: adds a changeset * feat: typesafe postcss config * chore(ui): include .storybook folder in tsconfig
- Loading branch information
Showing
44 changed files
with
243 additions
and
234 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,20 @@ | ||
--- | ||
'@orbitkit/storybook': patch | ||
'@orbitkit/tailwind': patch | ||
'@orbitkit/tsconfig': patch | ||
'@orbitkit/eslint': patch | ||
'@orbitkit/vite': patch | ||
'@orbitkit/marketing': patch | ||
'@orbitkit/utils': patch | ||
'@orbitkit/auth': patch | ||
'@orbitkit/core': patch | ||
'@orbitkit/api': patch | ||
'@orbitkit/env': patch | ||
'@orbitkit/db': patch | ||
'@orbitkit/ui': patch | ||
'@orbitkit/docs': patch | ||
'@orbitkit/web': patch | ||
'@orbitkit/assets': patch | ||
--- | ||
|
||
feat: upgrades to TypeScript 5.5 |
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 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,9 @@ | ||
/** @type {import('postcss-load-config').Config} */ | ||
const config = { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
} | ||
|
||
export default config |
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,20 +1,9 @@ | ||
{ | ||
"extends": ["astro/tsconfigs/strictest", "@orbitkit/tsconfig/base.json"], | ||
"extends": ["astro/tsconfigs/strictest", "@orbitkit/tsconfig/react.json"], | ||
"compilerOptions": { | ||
"jsx": "react-jsx", | ||
"baseUrl": ".", | ||
"paths": { | ||
"@/*": ["./src/*"] | ||
"@/*": ["src/*"] | ||
} | ||
}, | ||
"include": [ | ||
"**/*.astro", | ||
"**/*.ts", | ||
"**/*.tsx", | ||
"**/*.js", | ||
"**/*.jsx", | ||
"**/*.mjs", | ||
"**/*.cjs" | ||
], | ||
"exclude": ["node_modules", "dist", "playwright-report", "test-results"] | ||
} | ||
} |
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,9 @@ | ||
/** @type {import('postcss-load-config').Config} */ | ||
const config = { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
}, | ||
} | ||
|
||
export default config |
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,19 +1,30 @@ | ||
{ | ||
"extends": ["@orbitkit/tsconfig/next.json"], | ||
"compilerOptions": { | ||
"tsBuildInfoFile": "tsconfig.tsbuildinfo", | ||
"plugins": [ | ||
{ | ||
"name": "next" | ||
} | ||
], | ||
"baseUrl": ".", | ||
"paths": { | ||
"@/*": ["./src/*"] | ||
"@/*": ["src/*"] | ||
} | ||
}, | ||
"include": [ | ||
"next-env.d.ts", | ||
".next/types/**/*.ts", | ||
"**/*.ts", | ||
"**/*.tsx", | ||
".next/types/**/*.ts", | ||
"**/*.cts", | ||
"**/*.ctsx", | ||
"**/*.mts", | ||
"**/*.mtsx", | ||
"**/*.js", | ||
"**/*.jsx", | ||
"**/*.cjs", | ||
"**/*.mjs" | ||
], | ||
"exclude": ["node_modules", "playwright-report", "test-results"] | ||
"**/*.cjsx", | ||
"**/*.mjs", | ||
"**/*.mjsx" | ||
] | ||
} |
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 |
---|---|---|
|
@@ -52,10 +52,10 @@ | |
"@playwright/test": "^1.44.1", | ||
"@types/bun": "latest", | ||
"@types/eslint": "^8.56.10", | ||
"@types/node": "^20.14.6", | ||
"@types/node": "^20.14.8", | ||
"@types/yargs": "^17.0.32", | ||
"commitizen": "^4.3.0", | ||
"cspell": "^8.9.0", | ||
"cspell": "^8.9.1", | ||
"eslint": "^9.5.0", | ||
"husky": "^9.0.11", | ||
"lint-staged": "^15.2.7", | ||
|
@@ -66,7 +66,7 @@ | |
"prettier-plugin-astro": "^0.14.0", | ||
"prettier-plugin-packagejson": "^2.5.0", | ||
"turbo": "^2.0.4", | ||
"typescript": "^5.4.5", | ||
"typescript": "^5.5.2", | ||
"yargs": "^17.7.2" | ||
}, | ||
"packageManager": "[email protected]" | ||
|
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,3 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"tsBuildInfoFile": "tsconfig.build.tsbuildinfo", | ||
"outDir": "dist", | ||
"rootDir": "src", | ||
"noEmit": false | ||
}, | ||
"include": ["src/**/*.ts"] | ||
"extends": ["./tsconfig.json", "@orbitkit/tsconfig/build.json"] | ||
} |
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,7 +1,3 @@ | ||
{ | ||
"extends": ["@orbitkit/tsconfig/base.json"], | ||
"compilerOptions": { | ||
"tsBuildInfoFile": "tsconfig.tsbuildinfo" | ||
}, | ||
"include": ["**/*.ts", "**/*.mjs", "**/*.js", "**/*.cjs"] | ||
"extends": ["@orbitkit/tsconfig/base.json"] | ||
} |
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,3 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"tsBuildInfoFile": "tsconfig.build.tsbuildinfo", | ||
"outDir": "dist", | ||
"rootDir": "src", | ||
"noEmit": false | ||
}, | ||
"include": ["src/**/*.ts"] | ||
"extends": ["./tsconfig.json", "@orbitkit/tsconfig/build.json"] | ||
} |
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,8 +1,3 @@ | ||
{ | ||
"extends": ["@orbitkit/tsconfig/base.json"], | ||
"compilerOptions": { | ||
"tsBuildInfoFile": "tsconfig.tsbuildinfo", | ||
"lib": ["DOM", "DOM.Iterable", "ESNext"] | ||
}, | ||
"include": ["**/*.ts", "**/*.mjs", "**/*.js", "**/*.cjs"] | ||
"extends": ["@orbitkit/tsconfig/dom.json"] | ||
} |
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,8 +1,3 @@ | ||
{ | ||
"extends": ["@orbitkit/tsconfig/base.json"], | ||
"compilerOptions": { | ||
"tsBuildInfoFile": "tsconfig.tsbuildinfo" | ||
}, | ||
"include": ["**/*.ts", "**/*.js"], | ||
"exclude": ["node_modules", "dist"] | ||
"extends": ["@orbitkit/tsconfig/base.json"] | ||
} |
Oops, something went wrong.