Each feature will likely have its own dependencis, so make sure to run npm install
in root & for each project.
- LoginAs: Handles local-development login functionality
- Jest/React-Testing-Libary for testing
- Rollup for bundling the modules to ES5.
-
This will use Rollup to handle bringing all the features together into a single bundle. This will allow for importing modules like:
import { LoginAs, AccountSelector } from "utils";
-
To bundle as ES5:
npm run build
We will assume all tests will use Jest & VSCode as IDE. If this is the case, it is recommended to install the Jest extension for VSCode. Notes:
- At the root of this repo is a file:
.vscode/launch.json
. This contains some scripts to allow for debugging with the extension above. It did not seem to work putting this in the root of the sub project. You can edit thecwd
to run tests that are applicable.- You can verify this is working by seeing
Jest:✓
in the bottom of VSCode.
- You can verify this is working by seeing
- We are using ESLint and Prettier with the
@typescript-eslint/parser
. You can verify this is working by seeingESLint Prettier:✓
in the bottom right corner of VSCode. - Husky & LintStaged are used to verify there are no formatting & linting issues being committed.