Skip to content

Commit

Permalink
chore(release): v1.0.0...1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-ciniawsky committed Jan 11, 2017
1 parent a6c32fd commit 67f825b
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 21 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<a name="1.1.0"></a>
# [1.1.0](https://github.com/michael-ciniawsky/postcss-load-config/compare/v1.0.0...v1.1.0) (2017-01-11)


### Features

* **index:** config.file, improve error handling ([a6c32fd](https://github.com/michael-ciniawsky/postcss-load-config/commit/a6c32fd))



<a name="1.0.0"></a>
# [1.0.0]((https://github.com/michael-ciniawsky/postcss-load-config/compare/v1.0.0-rc...v1.0.0)) (2016-10-27)


### Bug Fixes

* **index:** behavior when config loading fails ([b549bc6](https://github.com/michael-ciniawsky/postcss-load-config/commit/b549bc6)), closes [#26](https://github.com/michael-ciniawsky/postcss-load-config/issues/26)
* **index:** set NODE_ENV when undefined ([b24501c](https://github.com/michael-ciniawsky/postcss-load-config/commit/b24501c))
* **index:** support node v0.12 ([0bbfa94](https://github.com/michael-ciniawsky/postcss-load-config/commit/0bbfa94))

### Features

* **index:** function support, jsdoc, cleanups ([a78c580](https://github.com/michael-ciniawsky/postcss-load-config/commit/a78c580))
39 changes: 18 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,42 @@
{
"name": "postcss-load-config",
"version": "1.0.0",
"version": "1.1.0",
"description": "Autoload Config 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/pkg/index.js test/rc/index.js test/js/index.js",
"logs": "standard-changelog > CHANGELOG.md",
"test": "nyc ava -v test/err/index.js test/pkg/index.js test/rc/index.js test/js/**/index.js",
"logs": "standard-changelog -i CHANGELOG.md -w",
"docs": "jsdoc2md index.js > INDEX.md",
"clean": "rm -rf .nyc_output coverage jsdoc-api dmd",
"start": "sudo npm run clean && npm run lint && sudo npm test"
},
"dependencies": {
"cosmiconfig": "^2.1.0",
"object-assign": "^4.1.0",
"postcss-load-options": "^1.0.2",
"postcss-load-plugins": "^2.0.0"
"postcss-load-options": "^1.1.0",
"postcss-load-plugins": "^2.2.0"
},
"devDependencies": {
"ava": "^0.17.0",
"coveralls": "^2.11.14",
"cssnano": "^3.7.7",
"coveralls": "^2.11.15",
"cssnano": "^3.10.0",
"jsdoc-to-markdown": "^2.0.0",
"nyc": "^9.0.1",
"postcss": "^5.2.4",
"postcss-import": "^8.1.2",
"nyc": "^10.0.0",
"postcss": "^5.2.8",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^9.1.0",
"postcss-nested": "^1.0.0",
"postcss-sprites": "^4.0.0",
"postcss-scss": "^0.4.0",
"standard": "^8.4.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"],
"extension": [".js"]
},
"files": [
"index.js"
],
"keywords": [
"postcss",
"postcss-config"
Expand Down

0 comments on commit 67f825b

Please sign in to comment.