@contentful/create-contentful-app 1.3.26 → 1.3.29
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 +11 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -55,6 +55,17 @@ Select between predefined and custom templates:
|
|
|
55
55
|
|
|
56
56
|
These flags are mutually exclusive. If no flag is provided, the TypeScript template is used.
|
|
57
57
|
|
|
58
|
+
Some popular templates are:
|
|
59
|
+
|
|
60
|
+
| Template | CLI Command |
|
|
61
|
+
| ------------------------------------------------------------------------------------------------------------ | :----------------------------------------------------------------------------------------------------------------------------------- |
|
|
62
|
+
| [typescript](https://github.com/contentful/apps/tree/master/examples/typescript) | `yarn create contentful-app -ts` |
|
|
63
|
+
| [javascript](https://github.com/contentful/apps/tree/master/examples/javascript) | `yarn create contentful-app -js` |
|
|
64
|
+
| [nextjs](https://github.com/contentful/apps/tree/master/examples/nextjs) | `yarn create contentful-app --example nextjs` |
|
|
65
|
+
| [vite-react](https://github.com/contentful/apps/tree/master/examples/vite-react) | `yarn create contentful-app --example vite-react` |
|
|
66
|
+
| [vue](https://github.com/contentful/apps/tree/master/examples/vue) | `yarn create contentful-app --example vue` |
|
|
67
|
+
|
|
68
|
+
|
|
58
69
|
### Help
|
|
59
70
|
|
|
60
71
|
`--help`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/create-contentful-app",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.29",
|
|
4
4
|
"description": "A template for building Contentful Apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contentful",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"build": "tsc"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@contentful/app-scripts": "1.1.
|
|
38
|
+
"@contentful/app-scripts": "1.1.19",
|
|
39
39
|
"chalk": "4.1.2",
|
|
40
40
|
"commander": "9.4.0",
|
|
41
41
|
"degit": "2.8.4",
|
|
@@ -59,10 +59,10 @@
|
|
|
59
59
|
"@types/chalk": "2.2.0",
|
|
60
60
|
"@types/degit": "2.8.3",
|
|
61
61
|
"@types/inquirer": "8.2.1",
|
|
62
|
-
"@types/node": "14.18.
|
|
62
|
+
"@types/node": "14.18.24",
|
|
63
63
|
"@types/rimraf": "3.0.2",
|
|
64
64
|
"@types/tildify": "2.0.2",
|
|
65
65
|
"@types/validate-npm-package-name": "4.0.0"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "6507ffb5982e833f051e7b0f3508e9dc484f0278"
|
|
68
68
|
}
|