@contentful/create-contentful-app 1.1.0-alpha.5 → 1.1.0-alpha.6

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.
Files changed (2) hide show
  1. package/lib/index.js +2 -2
  2. package/package.json +2 -6
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.5",
3
+ "version": "1.1.0-alpha.6",
4
4
  "description": "A template for building Contentful Apps",
5
5
  "keywords": [
6
6
  "contentful",
@@ -50,10 +50,6 @@
50
50
  "url": "https://github.com/contentful/create-contentful-app/issues"
51
51
  },
52
52
  "homepage": "https://github.com/contentful/create-contentful-app#readme",
53
- "directories": {
54
- "lib": "lib",
55
- "test": "test"
56
- },
57
53
  "files": [
58
54
  "lib"
59
55
  ],
@@ -70,5 +66,5 @@
70
66
  "@types/tildify": "^2.0.2",
71
67
  "@types/validate-npm-package-name": "^3.0.3"
72
68
  },
73
- "gitHead": "92bcad4a9d869518d66e61f9327818269c588182"
69
+ "gitHead": "fece2547470b044ec0dcb2aba26dd1f88da62796"
74
70
  }