@stephenchenorg/astro-graphql 9.0.0 → 10.0.0
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as graphql2 from "graphql";
|
|
2
2
|
|
|
3
3
|
//#region src/company-setting/fragments.d.ts
|
|
4
|
-
declare const companySettingFields:
|
|
4
|
+
declare const companySettingFields: graphql2.DocumentNode;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { companySettingFields };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stephenchenorg/astro-graphql",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "10.0.0",
|
|
5
5
|
"description": "Stephenchenorg Astro 前端 GraphQL 整合串接套件",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://stephenchenorg-astro.netlify.app",
|
|
@@ -28,13 +28,12 @@
|
|
|
28
28
|
"types": "./dist/image/index.d.ts",
|
|
29
29
|
"import": "./dist/image/index.js"
|
|
30
30
|
},
|
|
31
|
-
"./image/components
|
|
32
|
-
"./image/components/ResponsiveImage.astro": "./dist/image/components/ResponsiveImage.astro",
|
|
31
|
+
"./image/components/*": "./dist/image/components/*",
|
|
33
32
|
"./page": {
|
|
34
33
|
"types": "./dist/page/index.d.ts",
|
|
35
34
|
"import": "./dist/page/index.js"
|
|
36
35
|
},
|
|
37
|
-
"./page/components
|
|
36
|
+
"./page/components/*": "./dist/page/components/*"
|
|
38
37
|
},
|
|
39
38
|
"typesVersions": {
|
|
40
39
|
"*": {
|
|
@@ -58,7 +57,7 @@
|
|
|
58
57
|
"prepack": "npm run build"
|
|
59
58
|
},
|
|
60
59
|
"peerDependencies": {
|
|
61
|
-
"@stephenchenorg/astro": "^
|
|
60
|
+
"@stephenchenorg/astro": "^10.0.0",
|
|
62
61
|
"astro": "^5.0.0"
|
|
63
62
|
},
|
|
64
63
|
"dependencies": {
|