Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/seancassiere/metro-quest

Mobile User Experience Coursework
https://github.com/seancassiere/metro-quest

Last synced: about 1 month ago
JSON representation

Mobile User Experience Coursework

Awesome Lists containing this project

README

        

# Repo setup w/ Eslint + Conventional Commits

## Repository set up

1. Install project dependencies using Yarn.

```
yarn
```

2. Run the dev server (select an option from below):

```
// Watch all (HTML + TypeScript + SCSS) files
yarn dev

// Watch only HTML files
yarn dev:html

// Watch HTML + TypeScript files
yarn dev:ts
```

## Contribution

[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)

This repository's use the [Conventional Commits](https://www.conventionalcommits.org/) standard.

To make a commit:

1. Ensure the repository dependencies have been installed.
2. You staged all your changes in git.
3. Use the following command.

```
yarn cz
```

## Build distribution

To build the distribution static files into the `public/*` directory.

```
yarn build
```