Skip to content

Commit

Permalink
Bump to version: v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nknapp committed Mar 15, 2016
1 parent d3f4fc7 commit 772f5a1
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
This project adheres to [Semantic Versioning](http://semver.org/).

<a name="current-release"></a>
# Version 0.2.3 (Tue, 15 Mar 2016 14:03:18 GMT)

* [d3f4fc7](https://github.com/bootprint/customize-engine-less/commit/d3f4fc7) Add "require" to main-spec in order to get (low) coverage - Nils Knappmeier
* [5b70ade](https://github.com/bootprint/customize-engine-less/commit/5b70ade) Adjust travis-configuration - Nils Knappmeier
* [6fea911](https://github.com/bootprint/customize-engine-less/commit/6fea911) Added dummy test - Nils Knappmeier
* [d1a50f2](https://github.com/bootprint/customize-engine-less/commit/d1a50f2) Move to bootprint-organization and enable ghook for StandardJS - Nils Knappmeier

## v0.2.2 - 2015-12-20
### Fix

Expand All @@ -24,4 +31,4 @@ This project adheres to [Semantic Versioning](http://semver.org/).
* Necessary methods to add support for `customize-watch`

## v0.0.1 - 2015-09-30
### Initial version
### Initial version
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ of each of your projects.
Instead, the `pretest`- and `preformat`-scripts ensure that `standard` and `thought` are installed globally.
If you are not allowed to install packages globally, please raise an issue, so that we can try to find a solution.


### About this text

This text is part of the [Thought](https://github.com/nknapp/thought)-project. If you have any suggestions or wishes
Expand Down
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# customize-engine-less
# customize-engine-less

[![NPM version](https://badge.fury.io/js/customize-engine-less.svg)](http://badge.fury.io/js/customize-engine-less)
[![Travis Build Status](https://travis-ci.org/bootprint/customize-engine-less.svg?branch=master)](https://travis-ci.org/bootprint/customize-engine-less)
[![Coverage Status](https://img.shields.io/coveralls/bootprint/customize-engine-less.svg)](https://coveralls.io/r/bootprint/customize-engine-less)


> A less-engine for customize
Expand All @@ -23,13 +28,13 @@ customize()
// Add one less file
.merge({
less: {
main: require.resolve('./main.less'),
main: require.resolve('./main.less')
}
})
// Add another less file overriding some variables
.merge({
less: {
main: require.resolve('./override.less'),
main: require.resolve('./override.less')
}
})
.run()
Expand All @@ -39,6 +44,14 @@ customize()
This will generate the following output

```
custom false {}
debugState false {}
custom false { less: { config: { main: [], paths: [] }, watched: [] } }
debugState false { less: { config: { main: [], paths: [] }, watched: [] } }
custom false { less: { state: 'pending' } }
debugState false { less: { state: 'pending' } }
custom false { less: { state: 'pending' } }
debugState false { less: { state: 'pending' } }
{ less:
{ 'main.css': 'div{color:red;background-color:green}',
'main.css.map': '{"version":3,"sources":["/home/nknappmeier/privat/node-libraries/customize-engine-less/examples/main.less"],"names":[],"mappings":"AAGA,IACE,SAAA,CACA"}' } }
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "customize-engine-less",
"version": "0.2.2",
"version": "0.2.3",
"description": "A less-engine for customize",
"repository": {
"type": "git",
Expand Down

0 comments on commit 772f5a1

Please sign in to comment.