mirror of https://github.com/webpack/webpack.git
some fixes in the readme
This commit is contained in:
parent
7d16ffc084
commit
32f50737c0
|
@ -35,10 +35,12 @@ You as developer can use such files like any other module.
|
||||||
* load polyfills for node-specific things if used
|
* load polyfills for node-specific things if used
|
||||||
* offer replacements for node buildin libraries
|
* offer replacements for node buildin libraries
|
||||||
|
|
||||||
# Example
|
# Examples
|
||||||
|
|
||||||
See [example webapp](http://sokra.github.com/modules-webpack-example/).
|
See [example webapp](http://sokra.github.com/modules-webpack-example/).
|
||||||
|
|
||||||
|
More [examples](https://github.com/sokra/modules-webpack/tree/master/examples).
|
||||||
|
|
||||||
## Simple Example
|
## Simple Example
|
||||||
|
|
||||||
``` javascript
|
``` javascript
|
||||||
|
@ -204,7 +206,7 @@ The following loaders are included in webpack:
|
||||||
* [`style`](https://github.com/sokra/webpack-style-loader): Adds result of javascript execution to DOM
|
* [`style`](https://github.com/sokra/webpack-style-loader): Adds result of javascript execution to DOM
|
||||||
* [`script`](https://github.com/sokra/webpack-script-loader): Executes a javascript file once in global context (like in script tag), requires are not parsed. Use this to include a library. ex. `require("script!./jquery.min.js")`. This is synchron, so the `$` variable is available after require.
|
* [`script`](https://github.com/sokra/webpack-script-loader): Executes a javascript file once in global context (like in script tag), requires are not parsed. Use this to include a library. ex. `require("script!./jquery.min.js")`. This is synchron, so the `$` variable is available after require.
|
||||||
* (`.css` defaults to `style!css` loader, so all css rules are added to DOM)
|
* (`.css` defaults to `style!css` loader, so all css rules are added to DOM)
|
||||||
* (`.less` defaults to `style!css!val!less` loader, so all less rules are added to DOM)
|
* (`.less` defaults to `style!css!val/cacheable!less` loader, so all less rules are added to DOM)
|
||||||
|
|
||||||
See docs for loader in github repo of the loader.
|
See docs for loader in github repo of the loader.
|
||||||
|
|
||||||
|
@ -358,6 +360,7 @@ You can also save this options object in a JSON file and use it with the shell c
|
||||||
|
|
||||||
watch: true, // default: false
|
watch: true, // default: false
|
||||||
// recompiles on changes on module and contexts (currently not on loaders)
|
// recompiles on changes on module and contexts (currently not on loaders)
|
||||||
|
// unchanged files are cached for greater performance
|
||||||
|
|
||||||
watchDelay: 1000, // default: 200
|
watchDelay: 1000, // default: 200
|
||||||
// delay in ms before recompile after the last file change
|
// delay in ms before recompile after the last file change
|
||||||
|
|
Loading…
Reference in New Issue