Skip to content

Commit 8a28507

Browse files
committed
fix gitignores in templates
1 parent 6352473 commit 8a28507

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

src/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import prompts from 'prompts'
66
import { defaultDir, defaultName, defaultPackage } from './constants.js'
77
import { copyProjectTemplate } from './lib/copyProjectTemplate.js'
88
import { createProjectDir } from './lib/createProjectDir.js'
9+
import { renameGitignore } from './lib/renameGitignore.js'
910
import { updatePackageJson } from './lib/updatePackageJson.js'
1011
import { updateReadme } from './lib/updateReadme.js'
1112

@@ -79,6 +80,8 @@ async function init() {
7980
updatePackageJson(relativeDirPath, projectName, projectPackage)
8081

8182
updateReadme(relativeDirPath, projectName, projectPackage)
83+
84+
renameGitignore(relativeDirPath)
8285
} catch (e: any) {
8386
console.log(e)
8487
return

src/lib/renameGitignore.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import fs from 'fs'
2+
import path from 'path'
3+
4+
export const renameGitignore = (projectPath: string) => {
5+
const resolvedPath = path.resolve(process.cwd(), projectPath)
6+
7+
console.log('Renaming .gitignore...', resolvedPath)
8+
fs.renameSync( `${resolvedPath}/_gitignore`, `${resolvedPath}/.gitignore`)
9+
10+
return projectPath
11+
}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)