Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/azproduction/grunt-lmd
It builds LMD
https://github.com/azproduction/grunt-lmd
Last synced: 22 days ago
JSON representation
It builds LMD
- Host: GitHub
- URL: https://github.com/azproduction/grunt-lmd
- Owner: azproduction
- License: mit
- Created: 2012-11-08T19:20:09.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-08-11T15:36:16.000Z (over 10 years ago)
- Last Synced: 2024-09-20T02:09:57.408Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 4.01 MB
- Stars: 5
- Watchers: 4
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE-MIT
Awesome Lists containing this project
README
# grunt-lmd [![Build Status](https://secure.travis-ci.org/azproduction/grunt-lmd.png?branch=master)](http://travis-ci.org/azproduction/grunt-lmd)
Build LMD projects.
## Migration from grunt 0.3 to 0.4
- grunt-lmd >= 0.1.6 works with grunt 0.4
- grunt-lmd <= 0.1.5 works with grunt 0.3## Getting Started
Install this grunt plugin next to your project's grunt.js gruntfile with: `npm install grunt-lmd`Then add this line to your project's `grunt.js` gruntfile:
```javascript
grunt.loadNpmTasks('grunt-lmd');
```[grunt]: https://github.com/gruntjs/grunt
[getting_started]: https://github.com/gruntjs/grunt/wiki/Getting-startedSee also [lmd/examples](https://github.com/azproduction/lmd/tree/master/examples)
### Overview
Inside your `grunt.js` file add a section named `lmd`. This section specifies LMD build configuration.
#### Parameters
##### options ```[object]```
This controls how this task (and its helpers) operate and should contain key:value pairs, see options below.
##### projectRoot ```[string]```
Relative path to the project root
##### build ```string```
LMD build name
#### Options
For a full list of possible options, [see LMD project documentation](https://github.com/azproduction/lmd).
#### Config Example
``` javascript
lmd: {
build_name: {
projectRoot: 'test/',
build: 'test'
}
}
`````` javascript
// project root is current
// with mixins
lmd: {
build_name: 'test+ru'
}
```