diff --git a/.npmrc b/.npmrc index 8cacf51..36285f0 100644 --- a/.npmrc +++ b/.npmrc @@ -1,3 +1,3 @@ always-auth=true @prokyon:registry=https://npm.romanjaros.dev -@toolkit:registry=https://npm.romanjaros.dev \ No newline at end of file +@toolkit:registry=https://npm.romanjaros.dev diff --git a/create.js b/create.js index b126be4..bed3345 100644 --- a/create.js +++ b/create.js @@ -8,8 +8,9 @@ const appName = argv.name ?? 'app'; const appPort = argv.port ?? '0'; const isMonorepo = argv.monorepo === 'T'; +const defaultContextDir = './'; const rootDir = __dirname; -const contextDir = `${argv._[0]}/` ?? './'; +const contextDir = `${argv._[0]}/` ?? defaultContextDir; // create app folder const appsDir = `${contextDir}/apps`; @@ -42,7 +43,9 @@ try { } // rename internal files -fs.unlinkSync('.npmrc'); +if (contextDir === defaultContextDir) { + fs.unlinkSync(`${contextDir}/.npmrc`); +} fs.renameSync(`${contextDir}/npmrc`, `${contextDir}/.npmrc`); fs.renameSync(`${contextDir}/gitignore`, `${contextDir}/.gitignore`); fs.renameSync(`${contextDir}/prettierrc`, `${contextDir}/.prettierrc`); diff --git a/package.json b/package.json index 03c9bc6..0887ded 100644 --- a/package.json +++ b/package.json @@ -24,4 +24,4 @@ "keywords": [], "author": "Roman Jaroš", "license": "ISC" -} +} \ No newline at end of file