1.24.1 • Published 3 months ago

@tsed/yarn-workspaces v1.24.1

Weekly downloads
246
License
MIT
Repository
github
Last release
3 months ago

@tsed/yarn-workspaces

An util inspired by react-workspaces . This package, allow you to configure a CRACO project and use yarn workspaces to create shared modules in the same mono repository.

Prerequisite

  • A project configured with Yarn workspaces,
  • CRACO

Installation

Install the @tsed/yarn-workspaces on the react project level generated with CRACO:

yarn add -D @tsed/yarn-workspaces

Then edit or add the craco.config.js:

const { configure, ensureReact } = require("@tsed/yarn-workspaces")

module.exports = {
  webpack: {
    configure: (webpackConfig, ctx) => {
      webpackConfig = ensureReact(configure(webpackConfig, ctx))
      // other things ...
      return webpackConfig
    }
  }
}

ensureReact function ensure that webpack only one version of react.

Now you can create a shared package in your packages directory. For example create a shared directory and add a new package.json:

{
  "name": "@project/shared",
  "version": "1.0.0",
  "main": "src/index.js"
}

Then, in the application package.json add the @project/shared as dependencies:

{
  "name": "@project/app",
  "version": "1.0.0",
  "main": "src/index.js",
  "dependencies": {
    "@project/shared": "1.0.0"
  }
}

Finally, imported a shared component in your App and start the application!

1.24.1

3 months ago

1.24.0

12 months ago

1.23.0

1 year ago

1.22.6

2 years ago

1.22.5

2 years ago

1.22.0

2 years ago

1.22.3

2 years ago

1.22.4

2 years ago

1.22.1

2 years ago

1.22.2

2 years ago

1.21.0

2 years ago

1.20.2

2 years ago

1.19.4

2 years ago

1.19.5

2 years ago

1.20.1

2 years ago

1.20.0

2 years ago

1.19.3

2 years ago

1.19.2

3 years ago

1.19.1

3 years ago

1.19.0

3 years ago

1.18.6

3 years ago

1.18.5

3 years ago

1.18.4

3 years ago

1.18.3

3 years ago

1.17.2

3 years ago

1.17.1

3 years ago

1.17.6

3 years ago

1.17.4

3 years ago

1.18.2

3 years ago

1.17.3

3 years ago

1.17.8

3 years ago

1.17.7

3 years ago

1.17.0

3 years ago

1.16.0

3 years ago

1.15.1

3 years ago

1.15.0

3 years ago

1.14.0

3 years ago