assemble-core
Advanced tools
Comparing version 0.16.0 to 0.16.1
{ | ||
"name": "assemble-core", | ||
"description": "The core assemble application with no presets or defaults. All configuration is left to the implementor.", | ||
"version": "0.16.0", | ||
"version": "0.16.1", | ||
"homepage": "https://github.com/assemble/assemble-core", | ||
@@ -32,13 +32,13 @@ "author": "Jon Schlinkert (https://github.com/jonschlinkert)", | ||
"assemble-fs": "^0.4.6", | ||
"assemble-render-file": "^0.5.0", | ||
"assemble-render-file": "^0.5.1", | ||
"assemble-streams": "^0.5.0", | ||
"base-task": "^0.4.2", | ||
"lazy-cache": "^1.0.3", | ||
"templates": "^0.16.0" | ||
"templates": "^0.16.1" | ||
}, | ||
"devDependencies": { | ||
"async": "^1.5.2", | ||
"async": "^2.0.0-rc.2", | ||
"buffer-equal": "^1.0.0", | ||
"consolidate": "^0.14.0", | ||
"coveralls": "^2.11.6", | ||
"coveralls": "^2.11.9", | ||
"define-property": "^0.2.5", | ||
@@ -48,12 +48,12 @@ "engine-base": "^0.1.2", | ||
"event-stream": "^3.3.2", | ||
"expect": "^1.14.0", | ||
"get-value": "^2.0.3", | ||
"graceful-fs": "^4.1.2", | ||
"gulp": "^3.9.0", | ||
"gulp-eslint": "^1.1.1", | ||
"gulp-format-md": "^0.1.5", | ||
"expect": "^1.16.0", | ||
"get-value": "^2.0.5", | ||
"graceful-fs": "^4.1.3", | ||
"gulp": "^3.9.1", | ||
"gulp-eslint": "^2.0.0", | ||
"gulp-format-md": "^0.1.7", | ||
"gulp-git": "^1.7.0", | ||
"gulp-istanbul": "^0.10.3", | ||
"gulp-mocha": "^2.2.0", | ||
"is-buffer": "^1.1.1", | ||
"is-buffer": "^1.1.3", | ||
"istanbul": "^0.4.2", | ||
@@ -63,10 +63,10 @@ "kind-of": "^3.0.2", | ||
"minimist": "^1.2.0", | ||
"mocha": "*", | ||
"mocha": "^2.4.5", | ||
"parser-front-matter": "^1.3.0", | ||
"resolve-glob": "^0.1.8", | ||
"rimraf": "^2.5.1", | ||
"should": "*", | ||
"rimraf": "^2.5.2", | ||
"should": "^8.3.0", | ||
"sinon": "^1.17.3", | ||
"swig": "^1.4.2", | ||
"through2": "^2.0.0", | ||
"through2": "^2.0.1", | ||
"vinyl": "^1.1.1" | ||
@@ -119,3 +119,5 @@ }, | ||
"verb": { | ||
"toc": true, | ||
"run": true, | ||
"toc": false, | ||
"layout": false, | ||
"tasks": [ | ||
@@ -158,4 +160,10 @@ "readme" | ||
"vinyl-fs", | ||
"base-logger" | ||
] | ||
"base-logger", | ||
"parser-front-matter", | ||
"engine-handlebars", | ||
"consolidate" | ||
], | ||
"lint": { | ||
"reflinks": true | ||
} | ||
}, | ||
@@ -162,0 +170,0 @@ "lintDeps": { |
@@ -1,32 +0,7 @@ | ||
# assemble-core [![NPM version](https://img.shields.io/npm/v/assemble-core.svg)](https://www.npmjs.com/package/assemble-core) [![Build Status](https://img.shields.io/travis/assemble/assemble-core.svg)](https://travis-ci.org/assemble/assemble-core) | ||
# assemble-core [![NPM version](https://img.shields.io/npm/v/assemble-core.svg?style=flat)](https://www.npmjs.com/package/assemble-core) [![Build Status](https://img.shields.io/travis/assemble/assemble-core.svg?style=flat)](https://travis-ci.org/assemble/assemble-core) | ||
> The core assemble application with no presets or defaults. All configuration is left to the implementor. | ||
This library, assemble-core, was designed to give implementors and hackers the baseline features and API for creating rich and powerful node.js applications. Learn more about [what you can do with assemble-core](#about). | ||
assemble-core was designed to give implementors and hackers the baseline features and API for creating rich and powerful node.js applications. You can create web applications, project generators, or even your own static site generator using assemble-core. Learn more about [what you can do with assemble-core](#faq). | ||
- [Install](#install) | ||
- [Usage](#usage) | ||
- [Examples](#examples) | ||
- [API](#api) | ||
* [Templates API](#templates-api) | ||
* [File System API](#file-system-api) | ||
+ [.src](#src) | ||
+ [.dest](#dest) | ||
+ [.copy](#copy) | ||
+ [.symlink](#symlink) | ||
* [Task API](#task-api) | ||
+ [.task](#task) | ||
+ [.build](#build) | ||
+ [.watch](#watch) | ||
- [About](#about) | ||
- [Related projects](#related-projects) | ||
- [Tests](#tests) | ||
* [Running tests](#running-tests) | ||
- [Contributing](#contributing) | ||
- [History](#history) | ||
- [Author](#author) | ||
- [License](#license) | ||
_(TOC generated by [verb](https://github.com/verbose/verb) using [markdown-toc](https://github.com/jonschlinkert/markdown-toc))_ | ||
## Install | ||
@@ -251,5 +226,5 @@ | ||
## About | ||
## FAQ | ||
**What can I do with it?** | ||
**What can I do with assemble-core?** | ||
@@ -269,2 +244,11 @@ You can use assemble-core to create your own custom: | ||
**How does assemble-core differ from [assemble](https://github.com/assemble/assemble)?** | ||
| **feature** | **assemble-core** | **assemble** | **notes** | | ||
| --- | :---: | :---: | --- | | ||
| front-matter parsing | No | Yes | Use [parser-front-matter](https://github.com/jonschlinkert/parser-front-matter) as an `.onLoad` middleware. | | ||
| CLI | No | Yes | Create your own CLI experience | | ||
| Built-in template collections | No | Yes | Use `.create()` to add collections | | ||
| Built-in template engine | No | Yes | [assemble](https://github.com/assemble/assemble) ships with [engine-handlebars](https://github.com/jonschlinkert/engine-handlebars). Use `.engine()` to register any [consolidate](https://github.com/visionmedia/consolidate.js)-compatible template engine. | | ||
## Related projects | ||
@@ -338,3 +322,3 @@ | ||
## Author | ||
## Authors | ||
@@ -346,5 +330,10 @@ **Jon Schlinkert** | ||
**Brian Woodward** | ||
* [github/doowb](https://github.com/doowb) | ||
* [twitter/doowb](http://twitter.com/doowb) | ||
## License | ||
Copyright © 2016 [Jon Schlinkert](https://github.com/jonschlinkert) | ||
verb © 2016, [Jon Schlinkert](https://github.com/jonschlinkert). | ||
Released under the [MIT license](https://github.com/assemble/assemble-core/blob/master/LICENSE). | ||
@@ -354,2 +343,2 @@ | ||
_This file was generated by [verb](https://github.com/verbose/verb), v0.9.0, on March 28, 2016._ | ||
_This file was generated by [verb](https://github.com/verbose/verb), v, on April 05, 2016._ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19607
339
Updatedassemble-render-file@^0.5.1
Updatedtemplates@^0.16.1