create-fesd-app 1.0.0-bate.83 → 1.0.0-bate.84
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 +1 -1
- package/package.json +1 -1
package/bin/create-fesd-app.mjs
CHANGED
@@ -110,7 +110,7 @@ const createGitignore = async (packagePath) => {
|
|
110
110
|
// await promisesFs.writeFile(gitignorePath, data, 'utf8');
|
111
111
|
// await promisesFs.unlink(npmignorePath);
|
112
112
|
|
113
|
-
await promisesFs(npmignorePath, gitignorePath);
|
113
|
+
await promisesFs.rename(npmignorePath, gitignorePath);
|
114
114
|
|
115
115
|
|
116
116
|
} catch (error) {
|