create-gen-app 0.6.1 → 0.6.3

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.
@@ -77,7 +77,6 @@ async function ensureLicenseFile(outputDir, answers) {
77
77
  const licensePath = path.join(outputDir, 'LICENSE');
78
78
  fs.mkdirSync(path.dirname(licensePath), { recursive: true });
79
79
  fs.writeFileSync(licensePath, content.trimEnd() + '\n', 'utf8');
80
- console.log(`[create-gen-app] LICENSE updated with ${selectedLicense} template.`);
81
80
  }
82
81
  /**
83
82
  * Replace variables in a file using streams
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-gen-app",
3
- "version": "0.6.1",
3
+ "version": "0.6.3",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "Clone and customize template repositories with variable replacement",
6
6
  "main": "index.js",
@@ -29,12 +29,12 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "appstash": "0.2.6",
32
- "inquirerer": "2.2.1"
32
+ "inquirerer": "2.3.1"
33
33
  },
34
34
  "devDependencies": {
35
35
  "copyfiles": "^2.4.1",
36
36
  "makage": "0.1.8"
37
37
  },
38
38
  "keywords": [],
39
- "gitHead": "ad34404aab89a1f92d11de28f908ce80adcb7d72"
39
+ "gitHead": "b8ebff70a30df8ee4fb60794f7ba7842730ba199"
40
40
  }
@@ -113,7 +113,6 @@ async function ensureLicenseFile(outputDir, answers) {
113
113
  const licensePath = path.join(outputDir, 'LICENSE');
114
114
  fs.mkdirSync(path.dirname(licensePath), { recursive: true });
115
115
  fs.writeFileSync(licensePath, content.trimEnd() + '\n', 'utf8');
116
- console.log(`[create-gen-app] LICENSE updated with ${selectedLicense} template.`);
117
116
  }
118
117
  /**
119
118
  * Replace variables in a file using streams