Skip to content

Commit

Permalink
rename to postcss-unprefix
Browse files Browse the repository at this point in the history
  • Loading branch information
刘祺 committed May 20, 2016
1 parent 3cb54e2 commit 1512f5e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
12 changes: 6 additions & 6 deletions README.md
@@ -1,9 +1,9 @@
postcss-clean-prefixes
[postcss](https://github.com/postcss/postcss)-unprefix
=====

[![Build Status](https://travis-ci.org/gucong3000/postcss-clean-prefixes.svg?branch=master)](https://travis-ci.org/gucong3000/postcss-clean-prefixes)
[![NPM version](https://img.shields.io/npm/v/postcss-clean-prefixes.svg?style=flat-square)](https://www.npmjs.com/package/postcss-clean-prefixes)
[![Coverage Status](https://img.shields.io/coveralls/gucong3000/postcss-clean-prefixes.svg)](https://coveralls.io/r/gucong3000/postcss-clean-prefixes)
[![Build Status](https://travis-ci.org/gucong3000/postcss-unprefix.svg?branch=master)](https://travis-ci.org/gucong3000/postcss-unprefix)
[![NPM version](https://img.shields.io/npm/v/postcss-unprefix.svg?style=flat-square)](https://www.npmjs.com/package/postcss-unprefix)
[![Coverage Status](https://img.shields.io/coveralls/gucong3000/postcss-unprefix.svg)](https://coveralls.io/r/gucong3000/postcss-unprefix)

Though, please use [`autoprefixer`](https://github.com/postcss/autoprefixer) as part of your build process to ensure proper browser support.

Expand All @@ -12,15 +12,15 @@ Though, please use [`autoprefixer`](https://github.com/postcss/autoprefixer) as
## Installation

```bash
npm install --save postcss-clean-prefixes
npm install --save postcss-unprefix
```

## Usage

```javascript
var postcss = require("postcss");
var processors = [
require("postcss-clean-prefixes"),
require("postcss-unprefix"),
];

postcss(processors).process(myCss).css
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js
Expand Up @@ -112,7 +112,7 @@ function getfixedDecl(decl) {
}
}

module.exports = postcss.plugin("postcss-clean-prefixes", function(options) {
module.exports = postcss.plugin("postcss-unprefix", function(options) {
options = options || {};

return function(css) {
Expand Down
14 changes: 8 additions & 6 deletions package.json
@@ -1,38 +1,40 @@
{
"author": "gucong",
"bugs": {
"url": "https://github.com/gucong3000/postcss-clean-prefixes/issues"
"url": "https://github.com/gucong3000/postcss-unprefix/issues"
},
"dependencies": {
"autoprefixer": "^6.3.6",
"normalize-range": "^0.1.2",
"postcss": "^5.0.19",
"postcss-value-parser": "^3.3.0"
},
"description": "makes IE several of the most useful CSS3 decoration features",
"description": "Clear CSS vendor prefixes from your source.",
"devDependencies": {
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"mocha": "^2.4.5"
},
"homepage": "https://github.com/gucong3000/postcss-clean-prefixes#readme",
"homepage": "https://github.com/gucong3000/postcss-unprefix#readme",
"keywords": [
"postcss",
"prefix",
"unprefix",
"clear",
"clean",
"remove"
],
"license": "MIT",
"main": "./lib/index",
"name": "postcss-clean-prefixes",
"name": "postcss-unprefix",
"repository": {
"type": "git",
"url": "git+https://github.com/gucong3000/postcss-clean-prefixes.git"
"url": "git+https://github.com/gucong3000/postcss-unprefix.git"
},
"scripts": {
"coveralls": "npm run test-cov && coveralls < coverage/lcov.info",
"test": "mocha",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha"
},
"version": "0.1.4"
"version": "0.1.5"
}

0 comments on commit 1512f5e

Please sign in to comment.