-
Notifications
You must be signed in to change notification settings - Fork 70
Basics
Zhuliyan Penkov edited this page Jan 3, 2025
·
3 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 dart-sass, run
npm run sass
. To build a particular theme only, runnpm run sass --prefix packages/{theme}
. - To build all swatches with dart-sass, run npm run
sass:dist
. - To lint all themes, run
npm run stylelint
.
Additional commands could be found in the package.json and gulpfile.js files.