Skip to content
This repository has been archived by the owner on Jul 12, 2020. It is now read-only.
/ Blosk Public archive

A "Desktop" like website made with Aurelia vNext (WIP)

Notifications You must be signed in to change notification settings

AngelMunoz/Blosk

Repository files navigation

Blosk

This project is bootstrapped by aurelia/new.

Start dev web server

pnpm start

Build the app

Build files to dist folder.

pnpm run build

Unit Tests

pnpm run test

Run unit tests in watch mode.

pnpm run test:watch

Unit tests run in browser through browser-do. Please check scripts in package.json for more details.

By default, browser-do shuts down browser after tests. To keep browser window open for inspection, pass additional argument -k or --keep-open.

pnpm run build:test && browser-do -k --mocha --browser chrome < dist/entry-bundle.js

Unit tests in watch mode is executed through stand webpack watch mode and the help of webpack-shell-plugin-next.

Analyze webpack bundle

pnpm run analyze

WIP