Skip to content

Commit 336b9d2

Browse files
committed
generate docs
1 parent 7ef557b commit 336b9d2

File tree

2 files changed

+24
-10
lines changed

2 files changed

+24
-10
lines changed

README.md

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# assemble-core
99

10-
[![NPM version](https://img.shields.io/npm/v/assemble-core.svg?style=flat)](https://www.npmjs.com/package/assemble-core) [![NPM downloads](https://img.shields.io/npm/dm/assemble-core.svg?style=flat)](https://npmjs.org/package/assemble-core) [![Build Status](https://img.shields.io/travis/assemble/assemble-core.svg?style=flat)](https://travis-ci.org/assemble/assemble-core) [![Gitter](https://badges.gitter.im/join_chat.svg)](https://gitter.im/assemble/assemble-core)
10+
[![NPM version](https://img.shields.io/npm/v/assemble-core.svg?style=flat)](https://www.npmjs.com/package/assemble-core) [![NPM monthly downloads](https://img.shields.io/npm/dm/assemble-core.svg?style=flat)](https://npmjs.org/package/assemble-core) [![Build Status](https://img.shields.io/travis/assemble/assemble-core.svg?style=flat)](https://travis-ci.org/assemble/assemble-core) [![Gitter](https://badges.gitter.im/join_chat.svg)](https://gitter.im/assemble/assemble-core)
1111

1212
Built on top of [base](https://github.com/node-base/base) and [templates](https://github.com/jonschlinkert/templates), assemble-core is used in [assemble](https://github.com/assemble/assemble) to provide the baseline features and API necessary for rendering templates, working with the file system, and running tasks.
1313

@@ -121,17 +121,17 @@ app.page('foo', {content: 'Hi, my name is <%= name %>'})
121121

122122
Create an `assemble` application. This is the main function exported by the assemble module.
123123

124-
**Params**
125-
126-
* `options` **{Object}**: Optionally pass default options to use.
127-
128124
**Example**
129125

130126
```js
131127
var assemble = require('assemble');
132128
var app = assemble();
133129
```
134130

131+
**Params**
132+
133+
* `options` **{Object}**: Optionally pass default options to use.
134+
135135
***
136136

137137
### File System API
@@ -217,7 +217,7 @@ Assemble has the following methods for running tasks and controlling workflows:
217217

218218
#### .task
219219

220-
Define a task. Tasks are functions that are stored on a `tasks` object, allowing them to be called later by the [build](#build) method. (the [CLI][assemble-cli] calls [build](#build) to run tasks)
220+
Define a task. Tasks are functions that are stored on a `tasks` object, allowing them to be called later by the [build](#build) method. (the [CLI](https://github.com/assemble/assemble-cli) calls [build](#build) to run tasks)
221221

222222
**Params**
223223

@@ -290,7 +290,7 @@ assemble-core is a standalone application that was created using applications an
290290
**Plugins**
291291

292292
* [assemble-fs](https://github.com/assemble/assemble-fs): adds support for using [gulp](http://gulpjs.com) plugins and working with the file system
293-
* [assemble-streams](https://github.com/assemble/assemble-streams): adds support for pushing views and view collections into a [vinyl](http://github.com/gulpjs/vinyl) stream
293+
* [assemble-streams](https://github.com/assemble/assemble-streams): adds support for pushing views and view collections into a [vinyl](https://github.com/gulpjs/vinyl) stream
294294
* [base-task](https://github.com/node-base/base-task): adds flow control methods
295295

296296
## About
@@ -319,7 +319,7 @@ $ npm install -d && npm test
319319

320320
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
321321

322-
Please read the [contributing guide](contributing.md) for avice on opening issues, pull requests, and coding standards.
322+
Please read the [contributing guide](.github/contributing.md) for avice on opening issues, pull requests, and coding standards.
323323

324324
If Assemble doesn't do what you need, [please let us know](../../issues).
325325

@@ -344,6 +344,13 @@ Custom labels used in this changelog:
344344

345345
Please [let us know](../../issues) if any of the following heading links are broken. Thanks!
346346

347+
#### [0.27.0](https://github.com/assemble/assemble-core/compare/0.26.0...0.27.0) - 2016-12-27
348+
349+
**dependencies**
350+
351+
* Bumps [templates](https://github.com/jonschlinkert/templates) to v1.0.0 to take advantage of new template inheritance features!
352+
* Bumps [assemble-fs](https://github.com/assemble/assemble-fs) to v0.8.0
353+
347354
#### [0.26.0](https://github.com/assemble/assemble-core/compare/0.25.0...0.26.0) - 2016-08-06
348355

349356
**dependencies**
@@ -510,8 +517,8 @@ _(Changelog generated by [helper-changelog](https://github.com/helpers/helper-ch
510517
### License
511518

512519
Copyright © 2016, [Jon Schlinkert](https://github.com/jonschlinkert).
513-
Released under the [MIT license](https://github.com/assemble/assemble-core/blob/master/LICENSE).
520+
Released under the [MIT license](LICENSE).
514521

515522
***
516523

517-
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.1.28, on August 06, 2016._
524+
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.2.1, on December 29, 2016._

changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ Custom labels used in this changelog:
1919

2020
Please [let us know](../../issues) if any of the following heading links are broken. Thanks!
2121

22+
## [0.27.0] - 2016-12-27
23+
24+
**dependencies**
25+
26+
- Bumps [templates] to v1.0.0 to take advantage of new template inheritance features!
27+
- Bumps [assemble-fs] to v0.8.0
28+
2229
## [0.26.0] - 2016-08-06
2330

2431
**dependencies**

0 commit comments

Comments
 (0)