我有这个图书馆https://github.com/dhilst/webpacklibraryexample
我可以通过yarn add git+https://github.com/dhilst/webpacklibraryexample.git
安装它,但它不会在安装后构建(运行webpack)。我希望安装完成后会出现dist /文件夹。
如果我尝试使用,则出现Cannot find module
错误。我做错了什么?
此致
答案 0 :(得分:0)
好的,我明白了。您需要准备而不是 build ,如文档中所示:
如果正在安装的软件包包含一个prepare脚本,那么将安装其依赖项和devDependencies,并在打包和安装软件包之前运行prepare脚本。
devDependencies 还缺少 webpack-cli 。