Skip to content

Commit ef40675

Browse files
author
Travis Palmer
committed
Fix reference to origin code, update package.json in prep for NPM publish
1 parent 17ac9f8 commit ef40675

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ In regards to the concerns people have with Sass's `@extend`, and the problems t
4848

4949
> **A Note on "mixins" & "extends"**: Mixins copy declarations from an abstract definition into a concrete rule set. These `@extend`s (normally) clone a concrete rule set's selector(s) and add them to an abstract placeholder selector, or another existing rule. *This* plugin enables extends. If you would like to use mixins, as well — or instead — have a look at [`postcss-mixins`](https://github.com/postcss/postcss-mixins).
5050
51-
## ~~Installation~~
51+
## Installation
5252
This is just a fork, not an NPM module yet :(, it's also still in development, the origin is here, use it in the mean-time:
5353

5454
```
@@ -358,4 +358,4 @@ As with any piece of code it's got a few quirks. Behaviors that are not intended
358358

359359
**Non-logical means of extention for `@media`** : As anyone who's aware of the complications discussed in the [SASS issue about extending across `@media`](https://github.com/sass/sass/issues/1050) would know. There is no way (known) of extending when `@media` rules are involved that is both 'clean and simple' and 'logically correct with how `@extend` is used elsewhere'. The way this plugin operates, and it's logical meaning, is a blatant compromise so that it has both common use cases and easier implementation. While the current implementations will not change (without flags), such things as extending an `@media` from within an `@media` does nothing, this could possibly change in the future.
360360

361-
##### Originally a fork of davidtheclark's [postcss-simple-extend](https://travis-ci.org/davidtheclark/postcss-extend) (extended) by way of the included [MIT License](https://github.com/travco/postcss-extend/blob/master/LICENSE)
361+
##### Originally a fork of davidtheclark's [postcss-simple-extend](https://github.com/davidtheclark/postcss-simple-extend) (extended) by way of the included [MIT License](https://github.com/travco/postcss-extend/blob/master/LICENSE)

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
{
2-
"name": "postcss-simple-extend",
2+
"name": "postcss-extend",
33
"author": {
4-
"name": "David Clark",
5-
"email": "[email protected]",
6-
"url": "http://davidtheclark.com"
4+
"name": "Travis Palmer",
5+
"email": "[email protected]"
76
},
87
"license": "MIT",
9-
"version": "0.3.1",
8+
"version": "0.4.0",
109
"description": "Simple extends for PostCSS",
11-
"homepage": "https://github.com/davidtheclark/postcss-simple-extend",
10+
"homepage": "https://github.com/travco/postcss-extend",
1211
"repository": {
1312
"type": "git",
14-
"url": "https://github.com/davidtheclark/postcss-simple-extend.git"
13+
"url": "https://github.com/travco/postcss-extend.git"
1514
},
1615
"keywords": [
1716
"css",

0 commit comments

Comments
 (0)