Update .npmrc

Change-Id: I3ffc186339c2124d39e88ee681448122f4bd9a6e
This commit is contained in:
Roman Jaroš 2023-09-09 20:58:05 +02:00
parent 2d348483a3
commit 0d4e6f21c6
3 changed files with 7 additions and 4 deletions

2
.npmrc
View file

@ -1,3 +1,3 @@
always-auth=true always-auth=true
@prokyon:registry=https://npm.romanjaros.dev @prokyon:registry=https://npm.romanjaros.dev
@toolkit:registry=https://npm.romanjaros.dev @toolkit:registry=https://npm.romanjaros.dev

View file

@ -8,8 +8,9 @@ const appName = argv.name ?? 'app';
const appPort = argv.port ?? '0'; const appPort = argv.port ?? '0';
const isMonorepo = argv.monorepo === 'T'; const isMonorepo = argv.monorepo === 'T';
const defaultContextDir = './';
const rootDir = __dirname; const rootDir = __dirname;
const contextDir = `${argv._[0]}/` ?? './'; const contextDir = `${argv._[0]}/` ?? defaultContextDir;
// create app folder // create app folder
const appsDir = `${contextDir}/apps`; const appsDir = `${contextDir}/apps`;
@ -42,7 +43,9 @@ try {
} }
// rename internal files // rename internal files
fs.unlinkSync('.npmrc'); if (contextDir === defaultContextDir) {
fs.unlinkSync(`${contextDir}/.npmrc`);
}
fs.renameSync(`${contextDir}/npmrc`, `${contextDir}/.npmrc`); fs.renameSync(`${contextDir}/npmrc`, `${contextDir}/.npmrc`);
fs.renameSync(`${contextDir}/gitignore`, `${contextDir}/.gitignore`); fs.renameSync(`${contextDir}/gitignore`, `${contextDir}/.gitignore`);
fs.renameSync(`${contextDir}/prettierrc`, `${contextDir}/.prettierrc`); fs.renameSync(`${contextDir}/prettierrc`, `${contextDir}/.prettierrc`);

View file

@ -24,4 +24,4 @@
"keywords": [], "keywords": [],
"author": "Roman Jaroš", "author": "Roman Jaroš",
"license": "ISC" "license": "ISC"
} }