-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cli): migrate application entrypoint to Strcli (#180)
* refactor: update cli.ts to use stricli/core structure * refactor: migrate doctor command to stricli * refactor: migrate clean command to stricli * refactor: migrate debug command to stricli * refactor: migrate build command to stricli * refactor: migrate include command to stricli * refactor: migrate init command to stricli * refactor: migrate remove command to stricli * refactor: migrate run command to stricli * refactor: migrate scan command to stricli * refactor: migrate setup command to stricli * refactor: migrate teardown command to stricli * refactor: migrate update command to strcli * refactor: resolve linting errors * fix: resolve build errors, update package.json config * ci: pin ubuntu to 22.04 * refactor: resolve formatting, linting from CI
- Loading branch information
1 parent
f15a572
commit 52db3c1
Showing
56 changed files
with
1,902 additions
and
731 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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { defineCollection } from 'astro:content'; | ||
import { docsSchema, i18nSchema } from '@astrojs/starlight/schema'; | ||
import { defineCollection } from 'astro:content' | ||
import { docsSchema, i18nSchema } from '@astrojs/starlight/schema' | ||
|
||
export const collections = { | ||
docs: defineCollection({ schema: docsSchema() }), | ||
i18n: defineCollection({ type: 'data', schema: i18nSchema() }), | ||
}; | ||
} |
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
Oops, something went wrong.