我想执行什么可以由npm中的脚本执行。
例如,我安装了Vue-Press,我想执行vuepress eject。在我的脚本中,我可以看到vuepress是可访问的,但是我没有eject的脚本:

  "scripts": {
    "dev": "vuepress dev docs",
    "build": "vuepress build docs"
  },
  "license": "MIT",
  "devDependencies": {
    "vuepress": "^1.3.1",
    "@vuepress/plugin-back-to-top": "^1.3.1",
    "@vuepress/plugin-medium-zoom": "^1.3.1"
  }
因此,我可以创建一个脚本以供使用,也可以使用任何命令npm exec。我正在寻找后一种解决方案。

最佳答案

在文档中,它声明了有关executables的以下内容:
注意:我加粗了强调。

因此,根据您的要求,您可以:

  • cd到您的项目目录。
  • 然后运行以下命令:
    ./node_modules/.bin/vuepress eject
    
  • 10-05 23:12