@intouchg/starter-scss
v0.1.0
Published
Starter template for a NextJS app using the Intouch Design System with CSS Modules
Downloads
3
Readme
@intouchg/starter-scss
Starter template for a NextJS app using the Intouch Design System with CSS Modules
Creating a new project
- Clone the starter repo, renaming it according to your new project
git clone https://intazdoweb.intouchsol.com/IntouchDesignSystem/IntouchDesignSystem/_git/starter-scss NEW_PROJECT_FOLDER_NAME
- Navigate into the new project folder and delete the existing git repo
cd NEW_PROJECT_FOLDER_NAME && rm -rf .git
Update the package.json
name
,description
, andrepository
fieldsUpdate the package.json
dependencies
so they are locked down to specific version numbersInstall dependencies to generate the yarn.lock file
yarn
- Initialize a new git repo and create the initial commit
git init && git add . && git commit -m 'Initial commit'
- Add your new project's git repo url as the git remote
git remote add origin NEW_PROJECT_GIT_REPO_URL
- Finished! Push your code to the repo
git push origin master