@astrojs/check 0.9.6-alpha.0 → 0.9.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This package powers the `astro check` CLI command for running type checking and diagnostics in Astro projects.
|
|
4
4
|
|
|
5
|
-
This package's internal logic is powered by [the Astro language server](https://github.com/withastro/
|
|
5
|
+
This package's internal logic is powered by [the Astro language server](https://github.com/withastro/astro/blob/main/packages/language-tools/language-server/src/check.ts).
|
|
6
6
|
|
|
7
7
|
## Documentation
|
|
8
8
|
|
|
@@ -30,9 +30,9 @@ Copyright (c) 2022–present [Astro][astro]
|
|
|
30
30
|
|
|
31
31
|
[astro]: https://astro.build/
|
|
32
32
|
[docs]: https://docs.astro.build/en/guides/typescript/#type-checking
|
|
33
|
-
[contributing]: https://github.com/withastro/
|
|
33
|
+
[contributing]: https://github.com/withastro/astro/blob/main/packages/language-tools/CONTRIBUTING.md
|
|
34
34
|
[coc]: https://github.com/withastro/.github/blob/main/CODE_OF_CONDUCT.md
|
|
35
35
|
[community]: https://github.com/withastro/.github/blob/main/COMMUNITY_GUIDE.md
|
|
36
36
|
[discord]: https://astro.build/chat/
|
|
37
|
-
[issues]: https://github.com/withastro/
|
|
37
|
+
[issues]: https://github.com/withastro/astro/issues
|
|
38
38
|
[astro-integration]: https://docs.astro.build/en/guides/integrations-guide/
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrojs/check",
|
|
3
3
|
"description": "Type checking and diagnostics for Astro projects",
|
|
4
|
-
"version": "0.9.6
|
|
4
|
+
"version": "0.9.6",
|
|
5
5
|
"author": "withastro",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"homepage": "https://github.com/withastro/
|
|
7
|
+
"homepage": "https://github.com/withastro/astro/tree/main/packages/language-tools/astro-check",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "https://github.com/withastro/astro.git",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dist/**/*.d.ts"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@astrojs/language-server": "^2.16.1
|
|
25
|
+
"@astrojs/language-server": "^2.16.1",
|
|
26
26
|
"chokidar": "^4.0.1",
|
|
27
27
|
"kleur": "^4.1.5",
|
|
28
28
|
"yargs": "^17.7.2"
|