create-strapi-app 4.2.0-alpha.1 → 4.2.0-alpha.5

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.
@@ -37,6 +37,7 @@ program
37
37
  .option('--dbfile <dbfile>', 'Database file path for sqlite')
38
38
  .option('--dbforce', 'Overwrite database content if any')
39
39
  .option('--template <templateurl>', 'Specify a Strapi template')
40
+ .option('--ts, --typescript', 'Use TypeScript to generate the project')
40
41
  .description('create a new application')
41
42
  .action(directory => {
42
43
  initProject(directory, program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-strapi-app",
3
- "version": "4.2.0-alpha.1",
3
+ "version": "4.2.0-alpha.5",
4
4
  "description": "Generate a new Strapi application.",
5
5
  "keywords": [
6
6
  "create-strapi-app",
@@ -38,7 +38,7 @@
38
38
  "test": "echo \"no tests yet\""
39
39
  },
40
40
  "dependencies": {
41
- "@strapi/generate-new": "4.2.0-alpha.1",
41
+ "@strapi/generate-new": "4.2.0-alpha.5",
42
42
  "commander": "6.1.0",
43
43
  "inquirer": "8.2.0"
44
44
  },
@@ -46,5 +46,5 @@
46
46
  "node": ">=12.22.0 <=16.x.x",
47
47
  "npm": ">=6.0.0"
48
48
  },
49
- "gitHead": "3a3567a85026c7685bbd826eed690044f602d876"
49
+ "gitHead": "0095f4ec55ca381a4d1bb7d4fdfc105fa38f8fe7"
50
50
  }