From ef8f68bcaf25c7dde0ffd81659f9fe26cf30369b Mon Sep 17 00:00:00 2001 From: BenJamesBen <109869956+BenJamesBen@users.noreply.github.com> Date: Sat, 16 Nov 2024 06:43:10 -0800 Subject: [PATCH] fix(scripts): Remove references to lab development environment (#7232) Co-authored-by: Benjamin Fan --- scripts/add-software.mjs | 6 +++--- scripts/help.mjs | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/add-software.mjs b/scripts/add-software.mjs index 9f1e5c0687a..db828951f20 100644 --- a/scripts/add-software.mjs +++ b/scripts/add-software.mjs @@ -77,7 +77,7 @@ async function addDesign() { ๐Ÿ‘‰ We've created your design skeleton at ${chalk.green('designs/' + name)} ๐Ÿ‘‰ We've configured the packages via the ${chalk.green('package.json')} file - ๐Ÿ‘‰ We've added ${chalk.green('designs/' + name)} to the lab + ๐Ÿ‘‰ We've added ${chalk.green('designs/' + name)} to the local repository ${chalk.bold.yellow('โœ๏ธ Make it your own')} @@ -103,7 +103,7 @@ async function addDesign() { ${chalk.bold.yellow('๐Ÿ‘ท Get to work')} ${chalk.gray('โ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰ก')} - ๐Ÿš€ You can now start the development environment with ${chalk.blue('yarn lab')} + ๐Ÿš€ You can now start the org development environment with ${chalk.blue('yarn org')} ๐Ÿ“– Documentation is available at ${chalk.green('https://freesewing.dev/')} ๐Ÿค“ Happy hacking @@ -175,7 +175,7 @@ async function addPlugin() { ${chalk.bold.yellow('๐Ÿ‘ท Get to work')} ${chalk.gray('โ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰กโ‰ก')} - ๐Ÿ› ๏ธ You can now start the development environment with ${chalk.blue('yarn lab')} + ๐Ÿ› ๏ธ You can now start the org development environment with ${chalk.blue('yarn org')} ๐Ÿ“– Documentation is available at ${chalk.green('https://freesewing.dev/')} ๐Ÿค“ Happy hacking diff --git a/scripts/help.mjs b/scripts/help.mjs index dd92ded68f0..b6b21f2a97c 100644 --- a/scripts/help.mjs +++ b/scripts/help.mjs @@ -46,13 +46,13 @@ console.log(` Our development environment for ${chalk.bold('designs')} and ${chalk.bold( 'plugins' - )} lives in ${chalk.green('sites/lab')} - We refer to it as ${chalk.bold('the FreeSewing lab')}. + )} lives in ${chalk.green('sites/org')} + We refer to it as ${chalk.bold('the org development environment')}. It can display any design in this repository and will hot-reload any changes you make to a design. - To start the lab, run this command: + To start the org development environment, run this command: - ${chalk.blue('yarn lab')} + ${chalk.blue('yarn org')} Now open your browser and navigate to ${chalk.green('http://localhost:8000/')} @@ -64,7 +64,7 @@ console.log(` ${chalk.blue('yarn new design')} - It will ask you some questions, and set everything up for you, and add your design to the lab. + It will ask you some questions, and set everything up for you, and add your design to the local repository. If you later need to add more dependencies to your design, add them in ${chalk.green(