Update .npmrc
Change-Id: I3ffc186339c2124d39e88ee681448122f4bd9a6e
This commit is contained in:
parent
2d348483a3
commit
0d4e6f21c6
3 changed files with 7 additions and 4 deletions
2
.npmrc
2
.npmrc
|
@ -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
|
||||||
|
|
|
@ -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`);
|
||||||
|
|
|
@ -24,4 +24,4 @@
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "Roman Jaroš",
|
"author": "Roman Jaroš",
|
||||||
"license": "ISC"
|
"license": "ISC"
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue