Installation
Node version requirements
The easiest way to get started with SALVO-TS is to clone a template project. We'll use Dali, our standard theme boilerplate:
shellbashgit clone git@gitlab.com:eastsideco/frontend/dali.git my-projectcd my-project
shellbashgit clone git@gitlab.com:eastsideco/frontend/dali.git my-projectcd my-project
Before starting work on your new theme, remember to unlink it from the Dali repo and set it up with it's own:
shellbashrm -r .git/git initgit remote add origin git@gitlab.com:eastsideco/frontend/my-project.gitgit commit -am "Initial commit"git push
shellbashrm -r .git/git initgit remote add origin git@gitlab.com:eastsideco/frontend/my-project.gitgit commit -am "Initial commit"git push
Also update SALVO-TS and install other dependencies:
shellbashnpm install --save @eastsideco/salvo-ts@latest @eastsideco/salvo-ts-build@latest && npm install
shellbashnpm install --save @eastsideco/salvo-ts@latest @eastsideco/salvo-ts-build@latest && npm install
Now you're ready to start adding components to your new theme!