-
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
2d458a7
commit 06741e1
Showing
32 changed files
with
823 additions
and
105 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 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"fixed": [], | ||
"linked": [], | ||
"access": "public", | ||
"baseBranch": "main", | ||
"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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 Sgalsoft | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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,15 @@ | ||
# example | ||
|
||
## 0.1.2 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies | ||
- [email protected] | ||
|
||
## 0.1.1 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies | ||
- [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
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,17 +1,20 @@ | ||
{ | ||
"name": "starlight-squidex", | ||
"version": "0.1.0", | ||
"type": "module", | ||
"name": "root", | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">=18.19.0" | ||
}, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"changeset": "changeset" | ||
}, | ||
"keywords": [], | ||
"author": "Sgal Cheung", | ||
"license": "MIT", | ||
"packageManager": "[email protected]", | ||
"pnpm": { | ||
"overrides": { | ||
"@astrojs/starlight>@astrojs/mdx": "4.0.0-beta.1" | ||
} | ||
}, | ||
"devDependencies": { | ||
"@changesets/cli": "^2.27.10", | ||
"astro": "^5.0.0-beta" | ||
} | ||
} |
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,7 @@ | ||
# desquidex | ||
|
||
## 0.1.0 | ||
|
||
### Minor Changes | ||
|
||
- Refactored according to the [astro-integration-template](https://github.com/florian-lefebvre/astro-integration-template) specification. |
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,32 +1,58 @@ | ||
{ | ||
"name": "desquidex", | ||
"version": "0.0.4", | ||
"type": "module", | ||
"scripts": { | ||
"generate": "ts-to-zod" | ||
}, | ||
"exports": { | ||
"./loaders": "./loaders.ts", | ||
"./schemas": "./data/models/schemas.ts", | ||
"./integrations": "./integrations.ts", | ||
"./package.json": "./package.json" | ||
"version": "0.1.0", | ||
"description": "Use your Squidex data in Astro projects", | ||
"author": { | ||
"email": "[email protected]", | ||
"name": "Sgal Cheung", | ||
"url": "https://github.com/sgalcheung" | ||
}, | ||
"license": "MIT", | ||
"keywords": [ | ||
"withastro", | ||
"astro-loader" | ||
], | ||
"author": "Sgal Cheung <[email protected]>", | ||
"license": "MIT", | ||
"description": "Use your Squidex data in Astro projects", | ||
"homepage": "https://sdk--starlight-squidex.netlify.app/", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/sgalcheung/starlight-squidex/tree/sdk", | ||
"url": "https://github.com/sgalcheung/starlight-squidex.git", | ||
"directory": "packages/desquidex" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"sideEffects": false, | ||
"exports": { | ||
"./loaders": { | ||
"types": "./dist/loaders.d.ts", | ||
"default": "./dist/loaders.js" | ||
}, | ||
"./schemas": { | ||
"types": "./dist/data/models/schemas.d.ts", | ||
"default": "./dist/data/models/schemas.js" | ||
}, | ||
"./integrations": { | ||
"types": "./dist/integrations.d.ts", | ||
"default": "./dist/integrations.js" | ||
} | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"generate": "ts-to-zod", | ||
"dev": "tsup --watch", | ||
"build": "tsup" | ||
}, | ||
"type": "module", | ||
"peerDependencies": { | ||
"astro": "^5.0.0-beta" | ||
}, | ||
"devDependencies": { | ||
"astro": "5.0.0-beta.2", | ||
"astro": "^5.0.0-beta", | ||
"ts-to-zod": "^3.14.1", | ||
"tsup": "^8.3.5", | ||
"typescript": "^5.5.4", | ||
"zod": "^3.23.8" | ||
}, | ||
"dependencies": { | ||
|
3 changes: 1 addition & 2 deletions
3
packages/desquidex/generated/appDto.zod.ts → ...desquidex/src/__generated__/appDto.zod.ts
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
...ges/desquidex/generated/contentDto.zod.ts → ...uidex/src/__generated__/contentDto.zod.ts
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
...es/desquidex/generated/contentsDto.zod.ts → ...idex/src/__generated__/contentsDto.zod.ts
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
3 changes: 2 additions & 1 deletion
3
...es/desquidex/generated/featuresDto.zod.ts → ...idex/src/__generated__/featuresDto.zod.ts
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 3 additions & 2 deletions
5
packages/desquidex/generated/fieldDto.zod.ts → ...squidex/src/__generated__/fieldDto.zod.ts
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
packages/desquidex/data/core/client.ts → packages/desquidex/src/data/core/client.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 @@ | ||
/// <reference types="astro/client" /> |
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,4 @@ | ||
export * from "./data/models/schemas.js"; | ||
|
||
export { squidexCollections } from "./loaders.js"; | ||
export { refreshContentIntegration } from "./integrations.js"; |
2 changes: 1 addition & 1 deletion
2
packages/desquidex/integrations.ts → packages/desquidex/src/integrations.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
File renamed without changes.
Oops, something went wrong.