Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 1.06 KB

README.md

File metadata and controls

25 lines (16 loc) · 1.06 KB

Advanced Editor

Compiling assets

The following instructions assume that you have already installed Node.js on your computer. If this is not the case, please download and install the latest stable release from the official Node.js download page. If you are using Homebrew, you can also install Node.js via the command line:

$ brew install node

Notice: It is important that you install Node in a way that does not require you to sudo.

Once you have Node.js up and running, you will need to install the local dependencies using npm:

$ npm install

Tasks

Build - npm run build

Compiles all theme assets using Grunt. SCSS stylesheets will be compiled to design/custom.css and Javascripts will be concatenated and output to js/custom.js.

Watch - npm run watch

Watches the assets for changes and runs the appropriate Grunt tasks. Also starts a Livereload server that will push the changes to your Vanilla installation automatically.