Skip to content

Commit 7d8283c

Browse files
committed
Add rollup-plugin-amd to compaison table
1 parent 8732c8b commit 7d8283c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/get-started/why-webpack.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ webpack however is not the only module bundler out there. If you are choosing be
3131
| Feature | webpack/webpack | jrburke/requirejs | substack/node-browserify | jspm/jspm-cli | rollup/rollup | brunch/brunch |
3232
|---------|-----------------|-------------------|--------------------------|---------------|---------------|---------------|
3333
| Additional chunks are loaded on demand | **yes** | **yes** | no | [System.import](https://github.com/systemjs/systemjs/blob/master/docs/system-api.md#systemimportmodulename--normalizedparentname---promisemodule) | no | no |
34-
| AMD `define` | **yes** | **yes** | [deamdify](https://github.com/jaredhanson/deamdify) | yes | no | yes |
34+
| AMD `define` | **yes** | **yes** | [deamdify](https://github.com/jaredhanson/deamdify) | yes | [rollup-plugin-amd](https://github.com/brunch/uglify-js-brunch) | yes |
3535
| AMD `require` | **yes** | **yes** | no | yes | no | yes |
3636
| AMD `require` loads on demand | **yes** | with manual configuration | no | yes | no | no |
3737
| CommonJS `exports` | **yes** | only wrapping in `define` | **yes** | yes | [commonjs-plugin](https://github.com/rollup/rollup-plugin-commonjs) | yes |
@@ -40,7 +40,7 @@ webpack however is not the only module bundler out there. If you are choosing be
4040
| Concat in require `require("./fi" + "le")` | **yes** | no♦ | no | no | no | |
4141
| Debugging support | **SourceUrl, SourceMaps** | not required | SourceMaps | **SourceUrl, SourceMaps** | **SourceUrl, SourceMaps** | SourceMaps |
4242
| Dependencies | 19MB / 127 packages | 11MB / 118 packages | **1.2MB / 1 package** | 26MB / 131 packages | ?MB / 3 packages | |
43-
| ES2015 `import`/`export` | **yes**(vr. 2) | no | no | **yes****yes** | yes, via [es6 module transpiler](https://github.com/gcollazo/es6-module-transpiler-brunch)
43+
| ES2015 `import`/`export` | **yes** (webpack 2) | no | no | **yes****yes** | yes, via [es6 module transpiler](https://github.com/gcollazo/es6-module-transpiler-brunch)
4444
| Expressions in require (guided) `require("./templates/" + template)` | **yes (all files matching included)** | no♦ | no | no | no | no |
4545
| Expressions in require (free) `require(moduleName)` | with manual configuration | no♦ | no | no | no | |
4646
| Generate a single bundle | **yes** | yes♦ | yes | yes | yes | yes |

0 commit comments

Comments
 (0)