Skip to content

Commit

Permalink
chore(release): v2.1.0...v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-ciniawsky committed Jan 11, 2017
1 parent 67a51b7 commit 024a953
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 17 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<a name="2.2.0"></a>
# 2.2.0 (2017-01-11)


### Features

* **index:** expose config file ([c643172](https://github.com/michael-ciniawsky/postcss-load-plugins/commit/c643172))
* **index:** improve error handling ([f3a4048](https://github.com/michael-ciniawsky/postcss-load-plugins/commit/f3a4048))
* **lib:** improve error handling ([a64bb03](https://github.com/michael-ciniawsky/postcss-load-plugins/commit/a64bb03))



<a name="2.1.0"></a>
# 2.1.0 (2016-12-05)


### Bug Fixes

* **index:** set NODE_ENV if undefined ([920f806](https://github.com/michael-ciniawsky/postcss-load-plugins/commit/920f806))
* **index:** support node v0.12 ([e31fab3](https://github.com/michael-ciniawsky/postcss-load-plugins/commit/e31fab3))
* **lib/plugins:** support node v0.12 ([c440e6b](https://github.com/michael-ciniawsky/postcss-load-plugins/commit/c440e6b))
* **loadPlugins:** add object-assign polyfill ([acd3f84](https://github.com/michael-ciniawsky/postcss-load-plugins/commit/acd3f84))
* **plugins:** check for plugin.default ([024e8c7](https://github.com/michael-ciniawsky/postcss-load-plugins/commit/024e8c7))

### Features

* function support, jsdoc, cleanups ([f637d60](https://github.com/michael-ciniawsky/postcss-load-plugins/commit/f637d60))
26 changes: 9 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "postcss-load-plugins",
"version": "2.1.0",
"version": "2.2.0",
"description": "Autoload Plugins for PostCSS",
"engines": { "node": ">=0.12", "npm": ">=3" },
"engines": { "node": ">=0.12" },
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "nyc ava test/err/index.js test/rc/index.js test/pkg/index.js test/js/**/index.js",
"logs": "standard-changelog > CHANGELOG.md",
"test": "nyc ava -v test/err/index.js test/rc/index.js test/pkg/index.js test/js/**/index.js",
"logs": "standard-changelog -i CHANGELOG.md -w",
"docs": "jsdoc2md index.js lib/plugins.js > INDEX.md",
"clean": "rm -rf .nyc_output coverage jsdoc-api dmd",
"start": "sudo npm run clean && npm run lint && sudo npm test"
Expand All @@ -19,27 +19,19 @@
"devDependencies": {
"ava": "^0.17.0",
"coveralls": "^2.11.15",
"cssnano": "^3.8.1",
"cssnano": "^3.10.0",
"jsdoc-to-markdown": "^2.0.0",
"nyc": "^9.0.1",
"nyc": "^10.0.0",
"peter": "^1.0.2",
"postcss": "^5.2.6",
"postcss": "^5.2.8",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^9.0.0",
"postcss-nested": "^1.0.0",
"postcss-sprites": "^4.0.0",
"postcss-sprites": "^4.1.1",
"standard": "^8.6.0",
"standard-changelog": "0.0.1",
"sugarss": "^0.2.0"
},
"ava": {
"verbose": "true"
},
"nyc": {
"all": true,
"include": ["index.js", "lib"],
"extension": [".js"]
},
"files": [
"lib",
"index.js"
Expand All @@ -64,7 +56,7 @@
],
"repository": {
"type": "git",
"url": "git+https://github.com/michael-ciniawsky/postcss-load-plugins.git"
"url": "https://github.com/michael-ciniawsky/postcss-load-plugins.git"
},
"bugs": {
"url": "https://github.com/michael-ciniawsky/postcss-load-plugins/issues"
Expand Down

0 comments on commit 024a953

Please sign in to comment.