我已经将看似非NPM包https://github.com/anthonygore/html-critical-webpack-plugin的内容克隆到我的node_modules目录中,然后从内部手动运行npm install
以安装依赖项。这一切都在本地工作正常,我只是不确定如何通过可能包含在package.json
中为其他开发人员提供拉动和安装来使这个模块可用?
答案 0 :(得分:1)
这对我有用:
的package.json
{
...
"dependencies": {
"html-critical-webpack-plugin": "https://github.com/anthonygore/html-critical-webpack-plugin"
}
}