Go to file
James Skemp 29271c101d Fix code so that docs can be created again 2020-09-22 16:46:36 -05:00
.vscode Update VS Code exclusions to include docs and others 2020-07-28 22:23:27 -05:00
__tests__ Add some testing for Enums 2020-09-07 00:57:31 -05:00
public Replace Vuejs favicon with HTML5 one 2020-04-07 17:08:00 -05:00
src Fix code so that docs can be created again 2020-09-22 16:46:36 -05:00
.browserslistrc Update project with new preset options 2020-03-22 13:13:05 -05:00
.editorconfig Add new npm script to run normal eslint process 2020-06-15 08:32:27 -05:00
.eslintignore Update balancing display and account for more stats 2020-07-28 16:03:09 -05:00
.eslintrc.js Upgrade to Vue 3 with some fixes still needed 2020-09-20 18:07:46 -05:00
.gitignore Add Jest for testing with one test 2020-08-02 22:11:03 -05:00
.gitlab-ci.yml Add GitLab Pages support 2020-04-29 07:39:31 -05:00
README.md Add Jest coverage report information and two more tests 2020-08-02 22:34:49 -05:00
babel.config.js Update Jest to use Babel for export support in packages 2020-08-03 00:16:40 -05:00
jest.config.js Update Jest to use Babel for export support in packages 2020-08-03 00:16:40 -05:00
package-lock.json Fix code so that docs can be created again 2020-09-22 16:46:36 -05:00
package.json Fix code so that docs can be created again 2020-09-22 16:46:36 -05:00
tsconfig.build.json Add Jest for testing with one test 2020-08-02 22:11:03 -05:00
tsconfig.json Add Jest for testing with one test 2020-08-02 22:11:03 -05:00
vue.config.js Update vue config to include webpack bundling tweak 2020-09-07 21:09:23 -05:00

README.md

vuejs-tutorial

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Lints and fixes files

Out of the box Vue functionality. Automatically fixes issues when it can, and includes context.

npm run lint

This custom one uses eslint directly, and doesn't automatically fix issues.

npm run eslint

Jest testing

npm run test
npm run test:coverage

For the coverage report:

  • % Stmts = percent of statements called
  • % Branch = percent of if/switch branches that have been checked
  • % Funcs = percent of functions called
  • % Lines = percent of lines covered
  • Uncovered Line #s = exactly what it sounds like

Check for specific issues

npm run lint | grep require-returns

Generate Docs

This requires that npm install --global typedoc http-server. See https://typedoc.org/.

npm run docs

Customize configuration

See Configuration Reference.