We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 365b393 commit cc10565Copy full SHA for cc10565
README.md
@@ -36,7 +36,12 @@
36
## Usage
37
38
```js
39
+/* default usage, with no options (method = replace) */
40
postcss([ require('postcss-replace-overflow-wrap') ])
41
```
42
43
+```js
44
+/* add word-wrap, but keep overflow-wrap */
45
+postcss([ require('postcss-replace-overflow-wrap') ])({ method: 'copy' })
46
+```
47
See [PostCSS] docs for examples for your environment.
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "postcss-replace-overflow-wrap",
3
- "version": "0.0.0",
+ "version": "1.0.0",
4
"description": "PostCSS plugin to replace overflow-wrap with word-wrap or optionally retain both declarations.",
5
"keywords": [
6
"postcss",
0 commit comments