Skip to content

Commit 0fdbafc

Browse files
authored
fix: rename template/extras/pnpm/.npmrc to _npmrc (remove "." prefix) to fix eslint installation error (#2092)
1 parent 501e9e0 commit 0fdbafc

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.changeset/cyan-buckets-raise.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-t3-app": patch
3+
---
4+
5+
Fix ENOENT error during ESLint boilerplating by renaming the pnpm configuration file from .npmrc to \_npmrc to ensure it's included in the published package.

cli/src/installers/eslint.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const dynamicEslintInstaller: Installer = ({ projectDir, packages }) => {
4646
// pnpm
4747
const pkgManager = getUserPkgManager();
4848
if (pkgManager === "pnpm") {
49-
const pnpmSrc = path.join(extrasDir, "pnpm/.npmrc");
49+
const pnpmSrc = path.join(extrasDir, "pnpm/_npmrc");
5050
fs.copySync(pnpmSrc, path.join(projectDir, ".npmrc"));
5151
}
5252

File renamed without changes.

0 commit comments

Comments
 (0)