create-harper 1.4.8 → 1.5.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.
- package/package.json +1 -1
- package/template-react/config.yaml +4 -0
- package/template-react/package.json +1 -0
- package/template-react-ts/config.yaml +5 -0
- package/template-react-ts/package.json +1 -0
- package/template-vanilla/config.yaml +4 -0
- package/template-vanilla/package.json +1 -0
- package/template-vanilla-ts/config.yaml +5 -0
- package/template-vanilla-ts/package.json +1 -0
- package/template-vue/config.yaml +4 -0
- package/template-vue/package.json +1 -0
- package/template-vue-ts/config.yaml +5 -0
- package/template-vue-ts/package.json +1 -0
package/package.json
CHANGED
|
@@ -19,5 +19,10 @@ graphqlSchema:
|
|
|
19
19
|
jsResource:
|
|
20
20
|
files: 'resources/*.ts'
|
|
21
21
|
|
|
22
|
+
'@harperfast/schema-codegen':
|
|
23
|
+
package: '@harperfast/schema-codegen'
|
|
24
|
+
globalTypes: 'schemas/globalTypes.d.ts'
|
|
25
|
+
schemaTypes: 'schemas/types.ts'
|
|
26
|
+
|
|
22
27
|
'@harperfast/vite-plugin':
|
|
23
28
|
package: '@harperfast/vite-plugin'
|
|
@@ -19,6 +19,10 @@ graphqlSchema:
|
|
|
19
19
|
jsResource:
|
|
20
20
|
files: 'resources/*.js'
|
|
21
21
|
|
|
22
|
+
'@harperfast/schema-codegen':
|
|
23
|
+
package: '@harperfast/schema-codegen'
|
|
24
|
+
jsdoc: 'schemas/jsdocTypes.js'
|
|
25
|
+
|
|
22
26
|
# Serve the static files from the web directory as a web application
|
|
23
27
|
static:
|
|
24
28
|
files: 'web/*'
|
|
@@ -19,6 +19,11 @@ graphqlSchema:
|
|
|
19
19
|
jsResource:
|
|
20
20
|
files: 'resources/*.ts'
|
|
21
21
|
|
|
22
|
+
'@harperfast/schema-codegen':
|
|
23
|
+
package: '@harperfast/schema-codegen'
|
|
24
|
+
globalTypes: 'schemas/globalTypes.d.ts'
|
|
25
|
+
schemaTypes: 'schemas/types.ts'
|
|
26
|
+
|
|
22
27
|
# Serve the static files from the web directory as a web application
|
|
23
28
|
static:
|
|
24
29
|
files: 'web/*'
|
package/template-vue/config.yaml
CHANGED
|
@@ -19,5 +19,10 @@ graphqlSchema:
|
|
|
19
19
|
jsResource:
|
|
20
20
|
files: 'resources/*.ts'
|
|
21
21
|
|
|
22
|
+
'@harperfast/schema-codegen':
|
|
23
|
+
package: '@harperfast/schema-codegen'
|
|
24
|
+
globalTypes: 'schemas/globalTypes.d.ts'
|
|
25
|
+
schemaTypes: 'schemas/types.ts'
|
|
26
|
+
|
|
22
27
|
'@harperfast/vite-plugin':
|
|
23
28
|
package: '@harperfast/vite-plugin'
|