-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: clean up types and add module declarations * fix: update lockfile * fix: add prerelease support * chore(release): 2.0.1-beta.1 [skip ci] * fix: include declaration files in build * chore(release): 2.0.1-beta.2 [skip ci] * fix: more typing * chore(release): 2.0.1-beta.3 [skip ci] * remove tsconfig * chore: tidy up * fix: include module declaration in dist * chore(release): 2.0.1-beta.4 [skip ci] * fix: use referenece path to include module * chore(release): 2.0.1-beta.5 [skip ci] * fix: export types * chore(release): 2.0.1-beta.6 [skip ci] * fix: use named export * fix: clean up type files * chore: import order * chore: move to src * chore: adjust to new src folder * fix: simplify example * chore(release): 2.0.1-beta.7 [skip ci] * fix: use mjs for esm * fix: use named export * chore(release): 2.0.1-beta.8 [skip ci] * fix: rename plugin * fix: trying different config * chore(release): 2.0.1-beta.9 [skip ci] * manually copy the dts * fix: add client as peerdep * chore(release): 2.0.1-beta.10 [skip ci] * fix: remove dts from files * chore(release): 2.0.1-beta.11 [skip ci] * fix: config fix * chore(release): 2.0.1-beta.12 [skip ci] * fix: config fix * chore(release): 2.0.1-beta.13 [skip ci] * fix: config fix * chore(release): 2.0.1-beta.14 [skip ci] * fix: config fix * chore(release): 2.0.1-beta.15 [skip ci] * fix: config fix * chore(release): 2.0.1-beta.16 [skip ci] * fix: config fix * chore(release): 2.0.1-beta.17 [skip ci] * fix: try including dts in chain * chore(release): 2.0.1-beta.18 [skip ci] * chore: add jsx to tsconfig * fix: add @types * chore(release): 2.0.1-beta.19 [skip ci] * Revert "chore: add jsx to tsconfig" This reverts commit 4e8e8e8. * fix: try env.d.ts strategy * chore(release): 2.0.1-beta.20 [skip ci] * fix: try env.d.ts strategy * chore(release): 2.0.1-beta.21 [skip ci] * fix: try env.d.ts strategy * chore(release): 2.0.1-beta.22 [skip ci] * fix: try env.d.ts strategy * chore(release): 2.0.1-beta.23 [skip ci] * fix: try env.d.ts strategy * chore(release): 2.0.1-beta.24 [skip ci] * fix: try env.d.ts strategy * chore(release): 2.0.1-beta.25 [skip ci] * fix: finalize env.d.ts strategy * fix: fix exports * chore(release): 2.0.1-beta.26 [skip ci] * chore(release): 2.0.1-beta.26 [skip ci] * chore: update config * update config * chore: update lock file * fix: use named export --------- Co-authored-by: semantic-release-bot <[email protected]>
- Loading branch information
1 parent
bbb9f2c
commit 48ab268
Showing
11 changed files
with
37 additions
and
26 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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/// <reference path="../module.d.ts" /> |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import StudioRoute from "./studio-route.astro"; | ||
export default StudioRoute; |
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,15 +1,17 @@ | ||
{ | ||
"extends": "astro/tsconfigs/base", | ||
"$schema": "https://json.schemastore.org/tsconfig", | ||
"include": ["src/**/*"], | ||
"exclude": ["node_modules/*", "./vite*.ts", "dist", "studio"], | ||
"include": ["./*.astro", "./**/*.ts"], | ||
"exclude": ["node_modules/*", "./vite*.ts", "dist"], | ||
"compilerOptions": { | ||
"skipLibCheck": true, | ||
// Enable top-level await, and other modern ESM features. | ||
"target": "ESNext", | ||
"module": "ESNext", | ||
"moduleResolution": "node", | ||
"esModuleInterop": true, | ||
"baseUrl": "src", | ||
"outDir": "./dist", | ||
"declaration": true, | ||
"declarationDir": "./dist", | ||
"jsx": "preserve" | ||
} | ||
} | ||
} |
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