@flutry/cli 1.0.0 → 1.0.11
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/dist/commands/new.js +1 -0
- package/package.json +2 -2
package/dist/commands/new.js
CHANGED
|
@@ -118,6 +118,7 @@ async function createProject(answers) {
|
|
|
118
118
|
fs_1.promises.writeFile(path_1.default.join(targetDir, '.env'), buildEnv(answers, false), 'utf8'),
|
|
119
119
|
fs_1.promises.writeFile(path_1.default.join(targetDir, '.env.example'), buildEnv(answers, true), 'utf8'),
|
|
120
120
|
removeIfPresent(path_1.default.join(targetDir, '.gitattributes')),
|
|
121
|
+
removeIfPresent(path_1.default.join(targetDir, 'assets')),
|
|
121
122
|
]);
|
|
122
123
|
await fs_1.promises.writeFile(path_1.default.join(targetDir, 'README.md'), `# ${answers.folderName}\n\nGenerated by Flutry CLI.\n`, 'utf8');
|
|
123
124
|
spinner.succeed(chalk_1.default.greenBright('Project created successfully'));
|
package/package.json
CHANGED