Skip to content

Commit

Permalink
Preparation for release 0.1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
claudio-silva committed Nov 4, 2013
1 parent e5c09cf commit 70c7f17
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,12 @@ __Important:__ all contributions that are accepted will be made available under

## Release History

[v0.1.2](https://github.com/claudio-silva/grunt-angular-build-tool/releases/tag/v0.1.2) / 2012-11-04

- Major internal refactoring.
- Bug fixes.
- More options.

[v0.1.1](https://github.com/claudio-silva/grunt-angular-build-tool/releases/tag/v0.1.1) / 2012-10-31

- Documentation updates.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "grunt-angular-build-tool",
"description": "A build tool for AngularJS applications.",
"version": "0.1.1",
"homepage": "https://github.com/claudio/grunt-angular-build-tool",
"version": "0.1.2",
"homepage": "https://github.com/claudio-silva/grunt-angular-build-tool",
"author": {
"name": "Cláudio Silva",
"email": "claudio.silva@impactwave.com"
Expand Down
17 changes: 16 additions & 1 deletion tasks/lib/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,21 @@ var TASK_OPTIONS = {
*
* When <code>false</code>, if the module reference parameter has a name that is different from the one defined on
* <code>config.moduleVar</code>,
* a warning will be issued and the task may stop.
* a warning will be issued and the task may stop, unless the `--force` option is specified.
* @type {boolean}
*/
renameModuleRefs: false,
/**
* When `false`, required assets are copied to the assets target folder.
*
* When `true`, symlinks are generated instead. This speeds up the build operation considerably, and also saves disk
* space.
*
* If your operating system does not support symlinks, or if you want to archive or upload the build output, use
* `false`.
* @type {boolean}
*/
symlinkAssets: false,
/**
* Code packaging method.
*
Expand Down Expand Up @@ -110,10 +121,14 @@ var TASK_OPTIONS = {
/**
* Indentation white space for one level.
* You may, for instance, configure it for tabs or additional spaces.
* @type {string}
*/
indent: ' ',
/**
* This string will be appended to each module definition block.
* Use this to increase the readability of the generated script by visually separating each module from the previous
* one.
* @type {string}
*/
moduleFooter: '\n\n\n'
};
Expand Down

0 comments on commit 70c7f17

Please # to comment.