From 6f08d6cc31fa5877e5111540d8b08905032a75a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Jaro=C5=A1?= Date: Sat, 9 Sep 2023 19:58:47 +0200 Subject: [PATCH] Fix tool when run from node_modules Change-Id: Ica686f76a2264d760a1cd027b3393774778a6466 --- README.md | 8 ++++++++ create.js | 17 +++++++++++------ 2 files changed, 19 insertions(+), 6 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..f48b102 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Seedling + +## How to start + +1. Create context folder and then use it as last argument (use can use `.`) +2. Create file `.npmrc` +3. Paste this content to file `@toolkit:registry=https://npm.romanjaros.dev` +2. Use this `pnpm dlx @toolkit/seedling --name many --port 93 --monorepo T ./build` \ No newline at end of file diff --git a/create.js b/create.js index 016b5e6..b8b5cd2 100644 --- a/create.js +++ b/create.js @@ -8,14 +8,16 @@ const appName = argv.name ?? 'app'; const appPort = argv.port ?? '0'; const isMonorepo = argv.monorepo === 'T'; -// context directory -const contextDir = `${argv._[0]}` ?? '.'; +const rootDir = __dirname; +const contextDir = `${argv._[0]}/` ?? './'; // create app folder const appsDir = `${contextDir}/apps`; const appDir = isMonorepo ? `${contextDir}/apps/${appName}-fe` : `${contextDir}/`; if (!fs.existsSync(appDir)) { - fs.mkdirSync(contextDir); + if (!fs.existsSync(contextDir)) { + fs.mkdirSync(contextDir); + } if (isMonorepo) { fs.mkdirSync(appsDir); } @@ -25,11 +27,14 @@ if (!fs.existsSync(appDir)) { // copy folder content try { - fs.cpSync('./source/shared/', contextDir, { - overwrite: false, + fs.cpSync(`${rootDir}/source/shared/`, contextDir, { + force: true, + recursive: true, + }); + fs.cpSync(`${rootDir}/source/app/`, appDir, { + force: true, recursive: true, }); - fs.cpSync('./source/app/', appDir, { overwrite: true, recursive: true }); } catch (err) { console.error(err); }