Skip to content

Commit

Permalink
Add codeowners & update package location (#3)
Browse files Browse the repository at this point in the history
* Add codeowners

* Fix references to package in readme
  • Loading branch information
nvanselow committed Feb 26, 2018
1 parent 469aab8 commit b54b142
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# See https://github.com/blog/2392-introducing-code-owners, https://help.github.com/articles/about-codeowners/.

* @genedwards @harrismd @mattschweers @nvanselow
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

## Getting Started

1. Add the plugin with `yarn add babel-plugin-styled-components-css-namespace` or `npm install babel-plugin-styled-components-css-namespace`
1. Add the plugin with `yarn add @quickbaseoss/babel-plugin-styled-components-css-namespace` or `npm install @quickbaseoss/babel-plugin-styled-components-css-namespace`
1. Include the plugin in your babel configuration.

``` json
"babel": {
"plugins": [
"styled-components-css-namespace"
"@quickbaseoss/babel-plugin-styled-components-css-namespace"
]
}
```
Expand All @@ -18,7 +18,7 @@ If you are also using [babel-plugin-styled-components](https://github.com/styled
``` json
"babel": {
"plugins": [
"styled-components-css-namespace",
"@quickbaseoss/babel-plugin-styled-components-css-namespace",
"styled-components"
]
}
Expand All @@ -28,7 +28,7 @@ If you are also using [babel-plugin-styled-components](https://github.com/styled

### Default

Without adding options, this plugin with duplicate the class name generated by `styled-components` as suggested in [this issue](https://github.com/styled-components/styled-components/issues/613).
Without adding options, this plugin will duplicate the class name generated by `styled-components` as suggested in [this issue](https://github.com/styled-components/styled-components/issues/613).

``` css
// output
Expand Down

0 comments on commit b54b142

Please sign in to comment.