-
Notifications
You must be signed in to change notification settings - Fork 71
Basics
Dimitar Kalaydzhiev edited this page Dec 1, 2023
·
2 revisions
This article describes how to setup the repo for work and its structure.
In order to setup the repo for work, the following steps should be followed:
- Download and install (globally) the latest version of node.js.
- Clone the themes repo.
- Run
npm ci
in the terminal.
- To build all themes with node-sass, run
npm run sass
. To build a particular theme only, runnpm run sass --prefix packages/{theme}
. - To build all swatches with node-sass, run npm run
sass:swatches
. - To lint all themes, run
npm run stylelint
.
Additional commands could be found in the package.json and gulpfile.js files.