Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/self-denial-cy/webpack-exercise
personal webpack exercise
https://github.com/self-denial-cy/webpack-exercise
webpack
Last synced: 8 days ago
JSON representation
personal webpack exercise
- Host: GitHub
- URL: https://github.com/self-denial-cy/webpack-exercise
- Owner: self-denial-cy
- License: mit
- Created: 2022-09-21T08:47:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-07T10:34:21.000Z (about 2 years ago)
- Last Synced: 2024-11-10T22:14:08.697Z (2 months ago)
- Topics: webpack
- Language: JavaScript
- Homepage:
- Size: 14.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# webpack-exercise
- [.github](./.github) Github Actions 简单使用
- [exercise1](./exercise1) webpack 的完整使用示例(开发环境启动 webpack-dev-server、dll 优化策略、打包库、多页面应用打包、生产环境构建速度和打包体积优化策略、集成 ESLint、集成 Babel 等)、冒烟测试、单元测试的简单使用
- [exercise2](./exercise2) 实现一个极简 webpack,便于理解 webpack 构建流程
- [loader-exercise](./loader-exercise) 实现两个简易 loader(raw-loader、sprite-loader)
- [plugin-exercise](./plugin-exercise) 实现两个简易 plugin(SimplePlugin、ZipPlugin)
- [simplepack](./simplepack) 实现一个简易 pack 工具,不如 [exercise2](./exercise2) 详细
- [tapable-test](./tapable-test) tapable 简单使用