Skip to content

Commit e56fc35

Browse files
Update README.md
1 parent 824ac41 commit e56fc35

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# browserify-css [![build status](https://travis-ci.org/cheton/browserify-css.svg?branch=master)](https://travis-ci.org/cheton/browserify-css) [![Coverage Status](https://coveralls.io/repos/cheton/browserify-css/badge.svg?branch=master&service=github)](https://coveralls.io/github/cheton/browserify-css?branch=master)
1+
# browserify-css an amazing node package [![build status](https://travis-ci.org/cheton/browserify-css.svg?branch=master)](https://travis-ci.org/cheton/browserify-css) [![Coverage Status](https://coveralls.io/repos/cheton/browserify-css/badge.svg?branch=master&service=github)](https://coveralls.io/github/cheton/browserify-css?branch=master)
22

33
[![NPM](https://nodei.co/npm/browserify-css.png?downloads=true&stars=true)](https://www.npmjs.com/package/browserify-css)
44

@@ -44,9 +44,9 @@ Each `require('./path/to/file.css')` call will concatenate CSS files with @impor
4444
</html>
4545
```
4646
47-
## Configuration
47+
## Configuration setting
4848
49-
You can set configuration to your package.json file:
49+
You can set configuration to your package.json file as follows:
5050
``` json
5151
{
5252
"browserify-css": {
@@ -57,7 +57,7 @@ You can set configuration to your package.json file:
5757
}
5858
```
5959
60-
or use an external configuration file like below:
60+
or use an external configuration file like given below:
6161
``` json
6262
{
6363
"browserify-css": "./config/browserify-css.js"
@@ -284,7 +284,7 @@ Strip comments from CSS. Defaults to false.
284284
285285
## FAQ
286286
### 1. How do I include CSS files located inside the node_modules folder?
287-
You can choose one of the following methods to include CSS files located inside the node_modules folder:
287+
You can browse one of the following methods to include CSS files located inside the node_modules folder:
288288
289289
1. The easiest way to do this is using the `@import` rule. For example:
290290
@@ -302,7 +302,7 @@ You can choose one of the following methods to include CSS files located inside
302302
@import "styles/common.css";
303303
```
304304
305-
2. Use the global transform option (i.e. `--global-transform` or `-g`) on the command line to transform all files in a node_modules directory:
305+
2. Using the global transform option (i.e. `--global-transform` or `-g`) on the command line to transform all files in a node_modules directory:
306306
307307
``` bash
308308
$ browserify -g browserify-css app.js > bundle.js
@@ -341,7 +341,7 @@ You can choose one of the following methods to include CSS files located inside
341341
342342
### 2. How do I load font and image files from node_modules?
343343
344-
Assume that you have the following directory structure:
344+
Lets assume that you have the following directory structure:
345345
``` bash
346346
package.json
347347
dist/

0 commit comments

Comments
 (0)