create-fesd-app 1.0.0-bate.84 → 1.0.0-bate.86
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/bin/create-fesd-app.mjs +0 -6
- package/package.json +1 -1
package/bin/create-fesd-app.mjs
CHANGED
@@ -106,13 +106,7 @@ const createGitignore = async (packagePath) => {
|
|
106
106
|
const gitignorePath = packagePath + "/.gitignore"
|
107
107
|
|
108
108
|
try {
|
109
|
-
// const data = await promisesFs.readFile(npmignorePath, 'utf8');
|
110
|
-
// await promisesFs.writeFile(gitignorePath, data, 'utf8');
|
111
|
-
// await promisesFs.unlink(npmignorePath);
|
112
|
-
|
113
109
|
await promisesFs.rename(npmignorePath, gitignorePath);
|
114
|
-
|
115
|
-
|
116
110
|
} catch (error) {
|
117
111
|
console.error(`Error editing .gitignore: ${error}`);
|
118
112
|
}
|