@contentful/create-contentful-app 1.1.0-alpha.4 → 1.1.0-alpha.7

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 CHANGED
@@ -4,8 +4,9 @@ This project makes it easy to bootstrap [Contentful Apps](https://www.contentful
4
4
 
5
5
  ## Requirements
6
6
 
7
- - Node.js v14 or v16
8
- - npm v6
7
+ - Node.js v14.15 or v16
8
+ - NPM v6
9
+
9
10
 
10
11
  # Quick Overview
11
12
 
package/lib/index.js CHANGED
@@ -30,7 +30,7 @@ ${(0, logger_1.success)('Success!')} Created a new Contentful app in ${(0, logge
30
30
 
31
31
  Now kick it off by running
32
32
 
33
- ${(0, logger_1.code)(`cd ${folder}`)}
33
+ ${(0, logger_1.code)(`cd ${(0, tildify_1.default)(folder)}`)}
34
34
  ${(0, logger_1.code)(`npm start`)}
35
35
  `);
36
36
  }
@@ -89,7 +89,7 @@ function initProject(appName, options) {
89
89
  yield (0, utils_1.exec)('yarn', [], { cwd: fullAppFolder });
90
90
  }
91
91
  else {
92
- yield (0, utils_1.exec)('npm', ['install'], { cwd: fullAppFolder });
92
+ yield (0, utils_1.exec)('npm', ['install', '--no-audit', '--no-fund'], { cwd: fullAppFolder });
93
93
  }
94
94
  successMessage(fullAppFolder);
95
95
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentful/create-contentful-app",
3
- "version": "1.1.0-alpha.4",
3
+ "version": "1.1.0-alpha.7",
4
4
  "description": "A template for building Contentful Apps",
5
5
  "keywords": [
6
6
  "contentful",
@@ -14,7 +14,7 @@
14
14
  "directory": "packages/contentful--create-contentful-app"
15
15
  },
16
16
  "engines": {
17
- "node": ">=12",
17
+ "node": ">=14.15.0",
18
18
  "npm": ">=6"
19
19
  },
20
20
  "main": "lib/index.js",
@@ -36,12 +36,11 @@
36
36
  "build": "tsc"
37
37
  },
38
38
  "dependencies": {
39
- "@contentful/app-scripts": "^0.16.0-alpha.1",
39
+ "@contentful/app-scripts": "^0.16.0-alpha.2",
40
40
  "chalk": "^4.1.0",
41
41
  "commander": "^9.0.0",
42
- "contentful-management": "^8.0.0",
43
42
  "degit": "2.8.4",
44
- "inquirer": "^8.2.0",
43
+ "inquirer": "^8.2.1",
45
44
  "rimraf": "^3.0.2",
46
45
  "tildify": "^2.0.0",
47
46
  "validate-npm-package-name": "^3.0.0"
@@ -50,10 +49,6 @@
50
49
  "url": "https://github.com/contentful/create-contentful-app/issues"
51
50
  },
52
51
  "homepage": "https://github.com/contentful/create-contentful-app#readme",
53
- "directories": {
54
- "lib": "lib",
55
- "test": "test"
56
- },
57
52
  "files": [
58
53
  "lib"
59
54
  ],
@@ -65,10 +60,10 @@
65
60
  "@types/chalk": "^2.2.0",
66
61
  "@types/degit": "^2.8.3",
67
62
  "@types/inquirer": "^8.2.0",
68
- "@types/node": "^17.0.17",
63
+ "@types/node": "^14.14.31",
69
64
  "@types/rimraf": "^3.0.2",
70
65
  "@types/tildify": "^2.0.2",
71
66
  "@types/validate-npm-package-name": "^3.0.3"
72
67
  },
73
- "gitHead": "5b69e40f29b6bd14c04611109e88ecaf886c6176"
68
+ "gitHead": "a66c3394d79d19a999d6509ec967b8b85eca41cc"
74
69
  }