Skip to content

Commit 70b4713

Browse files
committed
update descriptions for labeled modules
1 parent 007f21d commit 70b4713

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ webpack is a bundler for modules. The main purpose is to bundle javascript files
88

99
**TL;DR**
1010

11-
* bundles CommonJs and/or AMD modules. (even combined)
11+
* bundles [CommonJs](http://www.commonjs.org/specs/modules/1.0/), [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) and/or [Labeled Modules](https://github.com/labeledmodules/labeled-modules-spec/wiki) modules. (even combined)
1212
* can create a single bundle or a bunch of chunks loaded on demand, to reduce initial loading time.
1313
* dependencies are resolved while compiling, this makes the runtime very small
1414
* loader can preprocess files while compiling, i. e. coffee-script to javascript
@@ -43,6 +43,7 @@ Take a look at the `examples` folder.
4343

4444
``` javascript
4545
var commonjs = require("./commonjs");
46+
require: "./labeled";
4647
define(["amd-module", "./file"], function(amdModule, file) {
4748
require(["big-module/big/file"], function(big) {
4849
// AMD require acts as split point

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "webpack",
3-
"version": "0.9.0-beta33",
3+
"version": "0.9.0-beta34",
44
"author": "Tobias Koppers @sokra",
5-
"description": "Packs CommonJs/AMD Modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jade, coffee, css, less, ... and your custom stuff.",
5+
"description": "Packs CommonJs/AMD/Labeled Modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jade, coffee, css, less, ... and your custom stuff.",
66
"dependencies": {
77
"esprima": "1.0.x",
88
"mkdirp": "0.3.x",

0 commit comments

Comments
 (0)