Skip to content

Commit 122be7b

Browse files
committed
Rename plugin
1 parent d407390 commit 122be7b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# PostCSS Sort [![Build Status][ci-img]][ci]
1+
# PostCSS Sorting [![Build Status][ci-img]][ci]
22

33
[PostCSS] plugin to sort rules content with specified order.
44

55
[PostCSS]: https://github.com/postcss/postcss
6-
[ci-img]: https://travis-ci.org/hudochenkov/postcss-sort.svg
7-
[ci]: https://travis-ci.org/hudochenkov/postcss-sort
6+
[ci-img]: https://travis-ci.org/hudochenkov/postcss-sorting.svg
7+
[ci]: https://travis-ci.org/hudochenkov/postcss-sorting
88

99
```css
1010
.foo {
@@ -21,7 +21,7 @@
2121
## Usage
2222

2323
```js
24-
postcss([ require('postcss-sort') ])
24+
postcss([ require('postcss-sorting') ])
2525
```
2626

2727
See [PostCSS] docs for examples for your environment.

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function cleanLineBreaks(node) {
5959
return node;
6060
}
6161

62-
module.exports = postcss.plugin('postcss-sort', function (opts) {
62+
module.exports = postcss.plugin('postcss-sorting', function (opts) {
6363
return function (css) {
6464
var order = getSortOrder(opts);
6565

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "postcss-sort",
2+
"name": "postcss-sorting",
33
"version": "0.0.0",
44
"description": "PostCSS plugin sorting.",
55
"keywords": [
@@ -10,11 +10,11 @@
1010
],
1111
"author": "Aleks Hudochenkov <[email protected]>",
1212
"license": "MIT",
13-
"repository": "hudochenkov/postcss-sort",
13+
"repository": "hudochenkov/postcss-sorting",
1414
"bugs": {
15-
"url": "https://github.com/hudochenkov/postcss-sort/issues"
15+
"url": "https://github.com/hudochenkov/postcss-sorting/issues"
1616
},
17-
"homepage": "https://github.com/hudochenkov/postcss-sort",
17+
"homepage": "https://github.com/hudochenkov/postcss-sorting",
1818
"dependencies": {
1919
"postcss": "^5.0.10"
2020
},

0 commit comments

Comments
 (0)