- 关于文档
- 1. 概览
- 开始
- 2.1. 动机
- 2.2. webpack是什么
- 2.3. 安装
- 2.4. 用法
- 2.5. Require Modules
- 2.6. Vendor Modules
- 2.7. 使用 Loaders
- 2.8. 使用 Plugins
- 2.9. 工具
- 2.10. 故障处理
- 教程与例子
- 指南
- webpack with
- Lists
- Development
- 7.1. Changelog
- 7.2. Roadmap
- 7.3. Ideas
- 7.4. Contributing
- Published with GitBook
webpack doc
A list of open ideas.
- Support globs in require statements so you can easily bundle static assets etc. Webpack-dev-server should monitor the glob for new files.
- Allow defining plugins in the webpack configuration file so you don't need an extra file for trivial custom loaders
- Allow adding command line parameters to the webpack CLI from the configuration file so it's easier to change the webpack configuration inside the configuration file.
- Allow the option of excluding of some paths (eg 'node_modules') from triggering warnings / errors. Example use case: ProtobufJS triggers a bunch of warnings - it's not relevant to me.
- Allow watching of files in webpack-dev-server specifically (using glob). If using something like PostCSS or Sass, changes in
@import
-ed CSS files aren't watched.