Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.01 KB

DEVELOPMENT.md

File metadata and controls

33 lines (24 loc) · 1.01 KB

Development

After forking the repo from GitHub and installing Yarn Classic:

git clone https://github.com/<your-name-here>/site learning-typescript-site --recurse-submodules
cd learning-typescript-site
yarn

This repository includes a list of suggested VS Code extensions. It's a good idea to use VS Code and accept its suggestion to install them, as they'll help with development.

Local Development

yarn start

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

Updating Git Submodules

Whenever the Learning TypeScript projects repo is updated, this repo will need to pull in those updates. Run this command:

git submodule foreach git pull
git add -A
git commit -m "Latest learning-typescript-projects"
git push