Commit Graph

209 Commits

Author SHA1 Message Date
Tobias Koppers b627690744 better readme 2012-10-26 00:01:57 +02:00
Tobias Koppers 07b2f8c6d5 fix example 2012-10-24 19:28:17 +02:00
Tobias Koppers b3eeaf80f8 more bugfix 2012-10-21 23:38:38 +02:00
Tobias Koppers ef199fbc89 bugfix 2012-10-21 23:34:30 +02:00
Tobias Koppers 466ec90ffa let loaders emit warnings/errors, don't fail on entry module error 2012-10-20 15:29:17 +02:00
Tobias Koppers 0cf8a98be6 updated graphs to new webpack-graph version 2012-10-10 17:29:53 +02:00
Tobias Koppers d51f6581dc github do not server static files -> gh-pages 2012-10-09 17:24:06 +02:00
Tobias Koppers 725698bce6 added graphs to examples 2012-10-09 17:17:38 +02:00
Tobias Koppers 0fb1fa820d updated examples 2012-10-09 00:12:10 +02:00
Tobias Koppers d5fc1115e7 simplifiy verbose stats api 2012-10-08 23:45:46 +02:00
Tobias Koppers e1fc167193 little stats bug 2012-10-08 23:35:22 +02:00
Tobias Koppers 55d748faaf Readme and license 2012-10-08 22:39:22 +02:00
Tobias Koppers b8be5e9bf5 final fixes 2012-10-08 22:34:26 +02:00
Tobias Koppers 41946d2450 fixed two bugs:
* watch mode do not include files with errors
* resolve errors display as `[object Object]` in workers
2012-10-02 16:27:40 +02:00
Tobias Koppers 5b64b25e9a not required 2012-09-26 18:02:15 +02:00
Tobias Koppers 383e1f0eed added option for min loaders for worker 2012-09-26 14:06:59 +02:00
Tobias Koppers 6cc2b7d099 deps updated 2012-09-26 13:40:00 +02:00
Tobias Koppers 60546dba63 cache worker args 2012-09-26 13:02:27 +02:00
Tobias Koppers 18db563ef6 seperate resolving 2012-09-26 12:28:23 +02:00
Tobias Koppers 0b9342e863 better work distribution 2012-09-25 19:23:05 +02:00
Tobias Koppers 193173c7b4 fixed parse error to be an object 2012-09-25 17:40:34 +02:00
Tobias Koppers 9320ed60ca fixed chunkNameFiles with hash 2012-09-25 17:20:36 +02:00
Tobias Koppers b9a90d4ace fixed dependency 2012-09-25 17:04:10 +02:00
Tobias Koppers 2eeb4923e1 API: loaderContext.depencency is more relaxed and don't need to be called before reading
API: loader.seperable cannot combined with
 loaderContext.emitFile and loaderContext.emitSubStats
 loaderContext.options.resolve
 loaderContext.options.events
 loaderContext.resolve and .sync
API: added profile option (and --profile)
API: added workers option (and --workers)
API: added closeWorkers option
API: if option workers is used:
 options must be JSON.stringify-able. Except options.resolve and options.events.
 Any error thrown in loader must be an object (i. e. an Error object). Only message, stack and value of toString is passed to main process.
API: The expected Cache object for options.cache has changed.
API: event module is emited after the module is finished.
API: event context is now named context-enum
API: added event context which is emited after the context is finished.
API: event dependency is removed. Use stats.dependencies for this.
API: event loader is removed. Use stats.loaders for this.
API: added stats.contexts as a list of contexts.
API: added stats...modules[..].dependencies for as list of files which affect the module's content.
API: added stats...modules[..].loaders for as list of loaders which affect the module's content.
API: removed stats.modulesPerChunk, it is useless and was deprecated.
API: added stats.chunkNameFiles which export the files for named chunks
API: added stats.startTime, timestamp as number
cmd: more colorful output to indicate caching and timing
API: webpack in watch mode emits the event watch-end if watch mode have to end (i. e. loader changed). You may restart it after clearing require.cache.
API: added loaderContext.loaderType as one of loader, preLoader or postLoader.
API: added loaderContext.currentLoaders as list of all loader of the current type.
API: added loaderContext.loaderIndex as index of current loader in loaderContext.currentLoaders.
API: added loaderContext.loaders, loaderContext.preLoaders and loaderContext.postLoaders.
2012-09-25 16:45:53 +02:00
Tobias Koppers ab357031ba fixed one argument calling and json output 2012-09-18 18:40:48 +02:00
Tobias Koppers 1e712788ee fix bug with brackets around requires 2012-08-29 15:16:20 +02:00
Tobias Koppers 44410d921b updated ignores 2012-08-23 19:46:21 +02:00
Tobias Koppers 638e82254a updates to enhanced-require, optimizing amd 2012-08-23 18:43:25 +02:00
Tobias Koppers 3d08e8cf14 removed deprecated stuff from test 2012-08-23 18:43:03 +02:00
Tobias Koppers 2bf6851c80 removed old stuff, moved loaders to enhanced-require 2012-08-23 14:58:10 +02:00
Tobias Koppers 013a33e604 updated readme 2012-08-23 04:24:00 +02:00
Tobias Koppers 95fca26b59 process.cwd() will return dirname of location.pathname, #21 2012-08-23 03:37:46 +02:00
Tobias Koppers 7a36c445e5 removed windows path stuff 2012-08-23 03:34:49 +02:00
Tobias Koppers c912c0134b separable loaders as opt-in feature, fixes #16
in future separable loaders may run in a
  sperate process for performance reasons
2012-08-23 03:17:52 +02:00
Tobias Koppers 4c84defbb6 updated examples 2012-08-23 02:05:07 +02:00
Tobias Koppers cdf12758ba bugfix: fixed multiple chunks 2012-08-23 02:01:33 +02:00
Tobias Koppers 284500f9ee added more examples 2012-08-23 01:58:17 +02:00
Tobias Koppers 955766be2a optimize api 2012-08-23 01:56:52 +02:00
Tobias Koppers 624eff12aa bugfix: error reporting minimize 2012-08-23 01:43:29 +02:00
Tobias Koppers 34549548a0 update buildin web modules to node 0.8.8 2012-08-23 01:04:02 +02:00
Tobias Koppers 592bcdde4b better amd support 2012-08-23 00:10:52 +02:00
Tobias Koppers c6520db2bd fixes #20 2012-08-22 23:04:26 +02:00
Tobias Koppers 8233cb9c13 fixed gitignore 2012-08-13 17:15:41 +02:00
Tobias Koppers 67acd76838 moved resolve 2012-08-13 17:10:24 +02:00
Tobias Koppers d2fae4b5ce Extracted resolving to module 2012-08-13 16:50:42 +02:00
Tobias Koppers d51996f2e5 bug fix 2012-08-13 15:45:27 +02:00
Tobias Koppers a5f1fa53f5 fixed typo in formatOutput 2012-08-09 11:57:27 +02:00
Tobias Koppers 871b1c8e9e updated mixed example 2012-08-09 11:32:02 +02:00
Tobias Koppers 2fdf1666fd Support for webpack-dev-middleware, and tests 2012-08-08 22:22:31 +02:00
Tobias Koppers 8c0ab9c229 fire bundle-invalid, documentation, added noWrite option 2012-08-08 20:27:55 +02:00