From 024a953776574825cff11bf5841396e0cbb36ff9 Mon Sep 17 00:00:00 2001 From: Michael Ciniawsky Date: Wed, 11 Jan 2017 10:55:33 +0100 Subject: [PATCH] chore(release): v2.1.0...v2.2.0 --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ package.json | 26 +++++++++----------------- 2 files changed, 36 insertions(+), 17 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..3ae781e --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,27 @@ + +# 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)) + + + + +# 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)) diff --git a/package.json b/package.json index bf8dbb9..e0fe3af 100644 --- a/package.json +++ b/package.json @@ -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" @@ -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" @@ -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"