Skip to content

Commit 2f35a0e

Browse files
committed
create .env files on dstpath. bump version.
1 parent 171c1f8 commit 2f35a0e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ prompt.run().then(language => {
5050

5151
rimraf.sync(path.resolve(outputDir, '.git'));
5252

53-
recursiveCopy(path.resolve(__dirname, "templates", templateName), outputDir, function (err, results) {
53+
const options = { dot: true, };
54+
55+
recursiveCopy(path.resolve(__dirname, "templates", templateName), outputDir, options, function (err, results) {
5456
if (err) return console.error('Copy failed: ' + err);
5557
console.info(`✂️ Created ${results.length} files.`);
5658

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-colyseus-app",
3-
"version": "0.15.5",
3+
"version": "0.15.6",
44
"description": "npm init template for bootstrapping an empty Colyseus project",
55
"main": "lib/index.js",
66
"bin": {

0 commit comments

Comments
 (0)