Webcomponent based InstUI
This webcomponent follows the open-wc recommendation.
Installation
Usage
In a simple html page:
<script type="module">
import '@instructure/';
</script>
In a React application:
In an Angular application:
Building the project
npm run bootstrap
Linting and formatting
To scan the project for linting and formatting errors, run
npm run lint
To automatically fix linting and formatting errors, run
npm run format
Testing with Web Test Runner
To execute a single test run:
npm run test
To run the tests in interactive watch mode run:
npm run test:watch
Run the local dev server
npm start
To commit use:
npm run commit