@autoinvent/conveyor-redux

Generates reducers and epics for use with conveyor

Usage no npm install needed!

<script type="module">
  import autoinventConveyorRedux from 'https://cdn.skypack.dev/@autoinvent/conveyor-redux';
</script>

README

conveyor

Frontend libraries for building an AutoInvent application

Packages

Development

Packages are managed using rush. Ensure rush is installed:

npm install --global @microsoft/rush

Then install, build, and lint:

rush update
rush build
rush lint

You should run "rush update" whenever you start working in the repo, after you pull from Git, and after you modify a package.json file. If there is nothing to do, "rush update" is instantaneous.

Adding a dependency to a package

cd packages/some-pkg
rush add --package ramda
rush add --package @types/ramda --dev
  • Manually updating the package.json and running rush update will also work.
  • Hint: Adding the flag -m or --make-consistent will cause other packages using this dependency to use the same version

TODO