update descriptions for labeled modules

This commit is contained in:
Tobias Koppers 2013-02-26 14:05:09 +01:00
parent 007f21d5fe
commit 70b4713cf6
2 changed files with 4 additions and 3 deletions

View File

@ -8,7 +8,7 @@ webpack is a bundler for modules. The main purpose is to bundle javascript files
**TL;DR**
* bundles CommonJs and/or AMD modules. (even combined)
* 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)
* can create a single bundle or a bunch of chunks loaded on demand, to reduce initial loading time.
* dependencies are resolved while compiling, this makes the runtime very small
* loader can preprocess files while compiling, i. e. coffee-script to javascript
@ -43,6 +43,7 @@ Take a look at the `examples` folder.
``` javascript
var commonjs = require("./commonjs");
require: "./labeled";
define(["amd-module", "./file"], function(amdModule, file) {
require(["big-module/big/file"], function(big) {
// AMD require acts as split point

View File

@ -1,8 +1,8 @@
{
"name": "webpack",
"version": "0.9.0-beta33",
"version": "0.9.0-beta34",
"author": "Tobias Koppers @sokra",
"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.",
"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.",
"dependencies": {
"esprima": "1.0.x",
"mkdirp": "0.3.x",