如何在两个目录之间共享 node_modules 和 package.json 文件?
How to share node_modules and package.json files between two directories?
当我尝试使用 WordPress 的新 Gutenberg 开发方法时,我注意到我需要在插件目录中创建单独的块文件夹。这些本质上是构成事物的前端和编辑器方面的组件。
我想了解两件事:
如何安装 node_modules
和 package.json
文件,以便在不在特定块目录文件夹中时接受命令。
我想 运行 使用特定脚本构建某些版本,在块目录之外处理此过程的正确命令是什么?
如何设置我的环境,以便当我输入命令时,无论我在哪个插件目录,它都能理解编译?
create-block package has scaffolding that allows you to create blocks and the package is undergoing heavy development right now 允许您在一个文件夹中包含多个块。
当我尝试使用 WordPress 的新 Gutenberg 开发方法时,我注意到我需要在插件目录中创建单独的块文件夹。这些本质上是构成事物的前端和编辑器方面的组件。
我想了解两件事:
如何安装
node_modules
和package.json
文件,以便在不在特定块目录文件夹中时接受命令。我想 运行 使用特定脚本构建某些版本,在块目录之外处理此过程的正确命令是什么?
如何设置我的环境,以便当我输入命令时,无论我在哪个插件目录,它都能理解编译?
create-block package has scaffolding that allows you to create blocks and the package is undergoing heavy development right now 允许您在一个文件夹中包含多个块。