Skip to content

Commit

Permalink
Update dependencies. Bump major version.
Browse files Browse the repository at this point in the history
  • Loading branch information
antyakushev committed Aug 26, 2015
1 parent b06988d commit 6d677be
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
6 changes: 5 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.0
* Update dependencies
* Bump major version

## 1.1.0
* Added support for nested loops

Expand All @@ -17,4 +21,4 @@ Sorry, these are the breaking changes.
* Add `by` keyword

## 0.0.1
* First version of a plugin
* First version of a plugin
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ module.exports = postcss.plugin('postcss-for', function (opts) {
};

processLoops = function (css) {
css.eachAtRule(function (rule) {
css.walkAtRules(function (rule) {
if ( rule.name === 'for' ) {
unrollLoop(rule);
}
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postcss-for",
"version": "1.1.0",
"version": "2.0.0",
"description": "PostCSS plugin that enables SASS-like for loop syntax in your CSS",
"keywords": [
"postcss",
Expand All @@ -20,14 +20,14 @@
"url": "https://github.com/antyakushev/postcss-for.git"
},
"dependencies": {
"postcss": "^4.1.0",
"postcss-simple-vars": "^0.3.0"
"postcss": "^5.0.0",
"postcss-simple-vars": "^1.0.0"
},
"devDependencies": {
"gulp-eslint": "0.11.1",
"gulp-mocha": "2.0.1",
"chai": "2.3.0",
"gulp": "3.8.11"
"gulp-mocha": "2.1.3",
"chai": "3.2.0",
"gulp": "3.9.0"
},
"scripts": {
"test": "gulp"
Expand Down

0 comments on commit 6d677be

Please sign in to comment.