jayesh-test0101 v0.0.0
Toast-Provider
Getting started
These instructions will help you get the project up and running on your local machine for development and testing purposes.
Prerequisites
Follow these prerequisites and setup instructions.
Setup
Once you set up the repository, go to the project directory and install
$ npm installThis will install necessary dependencies for the project.
Run
Once set up, go to the project directory and run
$ npm run startThis will build and deploy the project using webpack-dev-server at http://localhost:7010
Scripts
start
build and deploy the project using webpack-dev-server at http://localhost:7010
$ npm run startbuild
Build the project and output the bundles in project root /dist
$ npm run buildThis will also analyze the bundles using Webpack Bundle Analyzer and generate bundle report in project root /webpack.
test
Run all tests
$ npm run testtest-watch
Watch files for changes and re-run tests related to changed files
$ npm run test-watchtest-coverage
Run all tests and generate coverage report in project root /src/test/unit/coverage
$ npm run test-coverageFor rest common scripts, please refer to startree-ui's scripts
2 years ago