Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/seancassiere/metro-quest
- Owner: SeanCassiere
- Created: 2022-01-02T03:57:25.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T09:50:57.000Z (almost 2 years ago)
- Last Synced: 2024-05-01T16:48:31.000Z (6 months ago)
- Language: SCSS
- Homepage: https://sc-metro-quest.netlify.app
- Size: 10.5 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```