-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update according to the plugin guidelines
- Loading branch information
1 parent
fdfe701
commit bc08ab2
Showing
2 changed files
with
18 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
## 1.0.0 | ||
* Update according to the plugin guidelines | ||
* Bump to major release, since in 0.2.0 breaking changes were introduced and alas were not bumped. | ||
|
||
## 0.2.0 | ||
* Change `to` keyword to mean `inclusively` | ||
* Remove `through` keyword | ||
Sorry, these are the breaking changes. | ||
|
||
## 0.1.0 | ||
* Add `by` keyword | ||
|
||
## 0.0.1 | ||
* First version of a plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
{ | ||
"name": "postcss-for", | ||
"version": "0.2.0", | ||
"version": "1.0.0", | ||
"description": "PostCSS plugin that enables SASS-like for loop syntax in your CSS", | ||
"keywords": [ | ||
"postcss", | ||
"css", | ||
"postcssplugin", | ||
"postcss-plugin", | ||
"for", | ||
"loop", | ||
"sass", | ||
"from", | ||
"to", | ||
"through", | ||
"iterate" | ||
], | ||
"author": "Anton Yakushev <[email protected]>", | ||
|
@@ -25,9 +24,9 @@ | |
"postcss-simple-vars": "^0.2.4" | ||
}, | ||
"devDependencies": { | ||
"gulp-eslint": "0.8.0", | ||
"gulp-eslint": "0.11.1", | ||
"gulp-mocha": "2.0.1", | ||
"chai": "2.2.0", | ||
"chai": "2.3.0", | ||
"gulp": "3.8.11" | ||
}, | ||
"scripts": { | ||
|