Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxpoletaev/grunt-beml
Grunt plugin for processing BEML templates
https://github.com/maxpoletaev/grunt-beml
Last synced: about 1 month ago
JSON representation
Grunt plugin for processing BEML templates
- Host: GitHub
- URL: https://github.com/maxpoletaev/grunt-beml
- Owner: maxpoletaev
- License: mit
- Created: 2015-03-04T21:17:01.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-20T16:55:44.000Z (almost 9 years ago)
- Last Synced: 2023-08-24T02:36:58.007Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 129 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# grunt-beml
> Plugin for processing [BEML](https://github.com/zenwalker/node-beml) templates.
## Installing
```shell
$ npm install --save-dev grunt-beml
```## Usage
```js
grunt.initConfig({
beml: {
options: {
elemPrefix: '__',
modPrefix: '_',
modDlmtr: '_'
},
files: {
'dest/index.html': 'src/index.html'
}
}
});
```