From 15fd639b5e6f7a5f3f509eb6ec7d956f5473d24c Mon Sep 17 00:00:00 2001 From: AvraamMavridis Date: Fri, 10 Feb 2017 09:00:57 +0100 Subject: [PATCH] 1.0.0 --- README.md | 2 +- index.js | 2 -- package.json | 6 +++--- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7767797..6460681 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# PostCSS Sort Alphabetically [![Build Status](https://travis-ci.org/mycsHQ/postcss-sort-alphabetically.svg?branch=master)](https://travis-ci.org/mycsHQ/postcss-sort-alphabetically) [![semantic-versioning](https://img.shields.io/badge/semantic%20-versioning-green.svg)]() +# PostCSS Sort Alphabetically [![Build Status](https://travis-ci.org/mycsHQ/postcss-sort-alphabetically.svg?branch=master)](https://travis-ci.org/mycsHQ/postcss-sort-alphabetically) [![semantic-versioning](https://img.shields.io/badge/semantic%20-versioning-green.svg)]() [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![npm](https://img.shields.io/npm/v/postcss-sort-alphabetically.svg)](https://www.npmjs.com/package/postcss-sort-alphabetically) [PostCSS] plugin which sorts css properties alphabetically. diff --git a/index.js b/index.js index 439984f..7dd901e 100644 --- a/index.js +++ b/index.js @@ -2,8 +2,6 @@ var postcss = require('postcss'); module.exports = postcss.plugin('postcss-sort-alphabetically', function () { - // Work with options here - return function (root) { root.walkRules(rule => { diff --git a/package.json b/package.json index d1b6e39..84b646c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "postcss-sort-alphabetically", - "version": "0.1.0", + "version": "1.0.0", "description": "PostCSS plugin which sorts css properties alphabetically", "keywords": [ "postcss", @@ -22,9 +22,9 @@ "url": "git+https://github.com/mycsHQ/postcss-sort-alphabetically.git" }, "bugs": { - "url": "https://github.com/AvraamMavridis/postcss-sort-alphabetically/issues" + "url": "https://github.com/mycsHQ/postcss-sort-alphabetically/issues" }, - "homepage": "https://github.com/AvraamMavridis/postcss-sort-alphabetically", + "homepage": "https://github.com/mycsHQ/postcss-sort-alphabetically", "dependencies": { "postcss": "^5.2.6" },