diff --git a/CHANGELOG.md b/CHANGELOG.md index d938d52..15dd317 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release notes +# Version 1.0.2 (Tue, 09 Jan 2018 21:47:03 GMT) + +* [eb2d03a](https://github.com/bootprint/bootprint/commit/eb2d03a) Removed lodash dependency (copied from #22 by @jimmywarting) - Nils Knappmeier +* [2c87723](https://github.com/bootprint/bootprint/commit/2c87723) fix: bump `trace-and-clarify-if-possible` to 1.0.3 - Nils Knappmeier + # Version 1.0.1 (Fri, 23 Dec 2016 20:35:00 GMT) * [824bb17](https://github.com/bootprint/bootprint/commit/824bb17) Update documentation (bootprint-swagger is deprecated) - Nils Knappmeier diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 65a764b..3e86762 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,4 +1,4 @@ -## Contributing +# Contributing Contributions and feedback are always welcome. The expected procedure is the following: diff --git a/README.md b/README.md index 9289162..1c104eb 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,9 @@ # bootprint -[![Greenkeeper badge](https://badges.greenkeeper.io/bootprint/bootprint.svg)](https://greenkeeper.io/) - -[![NPM version](https://badge.fury.io/js/bootprint.svg)](http://badge.fury.io/js/bootprint) +[![NPM version](https://img.shields.io/npm/v/bootprint.svg)](https://npmjs.com/package/bootprint) [![Travis Build Status](https://travis-ci.org/bootprint/bootprint.svg?branch=master)](https://travis-ci.org/bootprint/bootprint) [![Coverage Status](https://img.shields.io/coveralls/bootprint/bootprint.svg)](https://coveralls.io/r/bootprint/bootprint) - +[![Greenkeeper badge](https://badges.greenkeeper.io/bootprint/bootprint.svg)](https://greenkeeper.io/) > Converts json and yaml into a static html page using Handlebars and Bootstrap @@ -62,15 +60,17 @@ as a base for other modules. -## License +# License + +`bootprint` is published under the MIT-license. -`bootprint` is published under the MIT-license. See [LICENSE](LICENSE) for details. -## Release-Notes + +# Release-Notes For release notes, see [CHANGELOG.md](CHANGELOG.md) -## Contributing guidelines +# Contributing guidelines See [CONTRIBUTING.md](CONTRIBUTING.md). \ No newline at end of file diff --git a/doc/cli.md b/doc/cli.md index 8590dd9..56df32e 100644 --- a/doc/cli.md +++ b/doc/cli.md @@ -20,13 +20,14 @@ Usage: bootprint [options] Converts json and yaml into a static html page using Handlebars and Bootstrap + Options: - -h, --help output usage information -V, --version output the version number - -f, --config-file Specify a config file for custom configurations + -f, --config-file Specify a config file for custom configurations (default: [object Object]) -d, --development-mode Turn on file-watcher, less source maps and http-server with live-reload -l, --long-stack Turn on long and clarified stack-traces. Requires Node 4 or newer + -h, --help output usage information ``` * The **<spec>** consists of the name of a globally installed template-module optionally without the `bootprint-` prefix. diff --git a/doc/js.md b/doc/js.md index 89b155a..315809c 100644 --- a/doc/js.md +++ b/doc/js.md @@ -49,20 +49,14 @@ and a template module installed locally. Consider th following file-hierarchy:

-
 ├── content.yaml
 ├── example.js
-├─┬ less
+├─┬ less/
 │ └── main.less
-├─┬ partials
+├─┬ partials/
 │ ├── body.html.hbs
 │ └── footer.html.hbs
-├─┬ target
-│ ├── bundle.js
-│ ├── index.html
-│ ├── main.css
-│ └── main.css.map
-└─┬ templates
+└─┬ templates/
   └── index.html.hbs
 
diff --git a/package-lock.json b/package-lock.json index ce4d3bb..421b0e9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "bootprint", - "version": "1.0.1", + "version": "1.0.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index c5aaf5e..84f12d5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bootprint", - "version": "1.0.1", + "version": "1.0.2", "description": "Converts json and yaml into a static html page using Handlebars and Bootstrap", "main": "index.js", "bin": {