Changes
1 changed files (+8/-14)
-
-
@@ -21,8 +21,6 @@ We'll request you to break down your PR into small ones if required.## Development guide This project uses Yarn Workspaces to organize packages. ### Requirements - Node.js >= Maintenance LTS (If you have an NVM, just do `nvm install` or `nvm use` at the root of the repository)
-
@@ -36,23 +34,19 @@# or "yarn install" if you prefer... ``` ### Building packages ### Build Every packages inside the `packages/` directory has `build` command. You can build JS files with `build` script. But you won't use the command so often because our development is basically done on Storybook. ```sh # to build a package (for example `@figspec/components`) # these two below are equivalent $ yarn workspace @figspec/components build $ cd packages/components && yarn build # to build a package $ yarn build # to start Storybook (for example `@figspec/components`) # you can run `yarn storybook` on each package's directory as well $ yarn workspace @figspec/components storybook # to start Storybook $ yarn storybook ``` ### Helper scripts ## Release workflow Packages inside `scripts/` directory is only for our development, not meant to be published to a package registory. See README on each package for more details. (WIP)
-