Skip to content
This repository was archived by the owner on Mar 17, 2021. It is now read-only.

Commit 062b267

Browse files
authoredFeb 12, 2019
docs: improve (#66)
1 parent 0622dc7 commit 062b267

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
 

‎README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@
1919

2020
A loader for webpack that allows importing files as a String.
2121

22-
## Requirements
23-
24-
This module requires a minimum of Node v6.9.0 and Webpack v4.0.0.
25-
2622
## Getting Started
2723

2824
To begin, you'll need to install `raw-loader`:
@@ -47,7 +43,7 @@ module.exports = {
4743
module: {
4844
rules: [
4945
{
50-
test: /\.txt$/,
46+
test: /\.txt$/i,
5147
use: 'raw-loader'
5248
}
5349
]
@@ -77,6 +73,12 @@ Beware, if you already define loader(s) for extension(s) in `webpack.config.js`
7773
import css from '!!raw-loader!./file.css'; // Adding `!!` to a request will disable all loaders specified in the configuration
7874
```
7975

76+
## Contributing
77+
78+
Please take a moment to read our contributing guidelines if you haven't yet done so.
79+
80+
[CONTRIBUTING](./.github/CONTRIBUTING.md)
81+
8082
## License
8183

8284
#### [MIT](./LICENSE)

0 commit comments

Comments
 (0)
This repository has been archived.