我需要在生产就绪项目中包含 node_modules 吗?

Do I need to include node_modules in the production ready project?

如果我正在构建 WordPress 主题,我需要在完成的主题中包含 node_modules 文件夹还是仅用于开发?当 运行 我的 git 提交时,我应该忽略 node_modules 文件夹吗?

这取决于您使用节点模块的目的,但我假设因为您标记了 gulp 您正在使用节点来处理资产。在我的例子中,我们使用 webpack 来编译 scss 和 javascript.

例如,如果我们从 npm 导入...

app.js

const PluginExample = require( '@creator/plugin-name' );

app.scss

@import `~bootstrap/scss/functions`;

在开发中,导入将从 node_modules 目录加载,但在生产中它被编译到同一个文件中,因此我们可以删除模块目录。

您应该知道您使用节点的目的是什么,但是,您可以在本地尝试 运行 您的生产构建过程,删除 node_modules 目录,然后看看会发生什么。