DaVanMonet
A Pattern Library system that compiles SASS/LESS to CSS and gives preview of Markdown documentation
Getting Started
You can use this project in two ways, either clone the repository and work in it directly, or use it as a grunt task.
Clone
Clone this repository and run the following commands in the base directory (we use npm as an example but recommend you use yarn)
Using NPM
npm install
Install DvM as a package
Installation
npm install davanmonet --save-dev
Configuration
In your package.json
"config": {
"configFile": "./configs/projectoptions.yml"
},
Run as NPM scripts
In your package.json
"scripts": {
"dev": "node node_modules/davanmonet/dvm-build/dev-server.js"
},
Then issue simplu run 'npm run dev':
npm run dev
Configuration file (JSON or YAML)
Default configuration resides in /configs/projectoptions.yml
It can be a JSON file as well. Just specify the correct path to the options file in your gruntfile configuration.
Directories
You can change where the system will put compiled css and where your source files are located
Index Options
The system will create an index of all the documentation (also used by the preview), this will specify where that index is saved and what metadata to add to the index.
Compilation
Add target files here. These can be anything that Webpack can understand. By default Less, Sass and JS (es6) is supported, but you can add more loaders to Webbpack for other languages.
The option compileIndividualFiles will create one less file per source files.
Env
Settings for ports etc
Structure
Add folders that should be included in the less/sass/index compilation.
If this is left empty, all folders in your specified src directory will be included.
User configuration (JSON or YAML)
The options "userconfig" takes a string with a path to additional configuration for a specific user. This file should not be checked in. And the application will run even if the file is not present.
The content of the file will extend the existing options for the project.
This makes it possible for developers to choose which port to run the dev environment on
On Site Preview
In order to use On Site Preview, onSitePreview.js need to be loaded on the target site, like this:
<script src="http://localhost:9003/static/onSitePreview.js"></script>
Config
Below is an example config snippet for On Site Preview.
The "onsitepreview" object should be at the root level of the configuration tree, preferrably in the user config file (user-conf.json).
"onsitepreview":
{
"components":
[
{
"guid": "31495b40-9492-40e4-86e3-1e06bfc40171",
"hook": "#SomeElement > div > p",
"state": 0,
"inject_pos": "after",
"wrapper": "<p class='preview'></p>",
"extra_css": ".preview .some-component { position: absolute; width: 100%; }"
}
]
}
Usage
Deployment
grunt davanmonet:build
Compiles the css and copies the required assets over to the build folder, the content of the build folder is ready to be hosted on a IIS website.
Development
grunt davanmonet:dev
This will create the css and start a webserver so you can preview your work
Create indexes
grunt davanmonet:createindexes
This is used in the previous steps. It creates the content (documentation) and the target (outputed css) indexes.