Skip to content

Commit c7ae08b

Browse files
committed
templates now rename 'npmrc' to '.npmrc', similar to .gitignore files
1 parent bf52cf2 commit c7ae08b

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed
File renamed without changes.
File renamed without changes.

tools/nevermore-template-helpers/src/templateHelpers.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ export class TemplateHelper {
6363
if (newName == 'gitignore') {
6464
newName = '.gitignore';
6565
}
66+
if (newName == 'npmrc') {
67+
newName = '.npmrc';
68+
}
6669

6770
const stats = await fs.promises.stat(origFilePath);
6871

0 commit comments

Comments
 (0)