@flutry/cli 1.0.1 → 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.
@@ -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
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@flutry/cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.11",
4
4
  "description": "Flurty project scaffolding CLI",
5
5
  "bin": {
6
- "flutry": "dist/index.js"
6
+ "flutry": "dist/index.js"
7
7
  },
8
8
  "main": "dist/index.js",
9
9
  "types": "dist/index.d.ts",