文件名称:7-compiler:webapck源码 ( 手写 Compiler 类 )
文件大小:620KB
文件格式:ZIP
更新时间:2024-06-17 20:03:58
JavaScript
手写webpack-Compiler 新建 7-compiler 文件夹 yarn init -y 或者 npm init -y 来初始化项目 资料 说明 webpack.config.7compiler.js 是传入 7-compiler.js 用于手写 Compiler 的配置文件 webpack.config.js 是用来学习webpack基础的配置文件 cnpm run 7-pack: 使用自己的 Compiler 打包 cnpm run build: 使用 webpack 打包 (1) 相关依赖 yarn add @babel/parser @babel/traverse @babel/types @babel/generator yarn add ejs yarn add webpack webpack-cli 安装 webpack 和 webpack-cli 主要就是打包后,
【文件预览】:
7-compiler-main
----7-compiler.js(9KB)
----.babelrc(267B)
----main.ejs(690B)
----package.json(2KB)
----loaders()
--------style-loader.js(319B)
--------less-loader.js(426B)
----plugins()
--------index.js(1KB)
----src()
--------index.js(751B)
--------images()
--------index.less(27B)
--------b.js(55B)
--------index.html(528B)
--------a.js(22B)
--------index.scss(345B)
--------index.css(64B)
----.gitignore(376B)
----webpack.config.7compiler.js(756B)
----webpack.config.js(8KB)
----README.md(6KB)
----postcss.config.js(92B)