To help eliminate redundant tasks around the development process, please take note of some of the NPM scripts available to you. The following commands should be ran from your project's root directory. And of course, you can run any of the below commands using yarn run <command>
.
Build your app for production and package. More info can be found in the Building Your App section.
Run app in development.
You can also pass command line paramaters to the application with:
npm run dev --arg1=val1 --arg2
Lint all your src/
's and test/
's JS & Vue component files.
Lint all your src/
's and test/
's JS & Vue component files and attempt to fix issues.
Run both npm run pack:main
& npm run pack:renderer
. Although these commands are available, there are not many cases where you will need to manually do this as npm run build
will handle this step.
Run webpack to bundle main
process source code.
Run webpack to bundle renderer
process source code.
Run unit tests with Karma + Jasmine. More information on Unit Testing.
Run end-to-end tests with Spectron + Mocha. More information on End-to-end Testing.
Runs both npm run unit
& npm run e2e
. More information on Testing.