gpt4 book ai didi

asp.net-core-mvc - 在构建时运行脚本(例如 Gulp 或 Grunt)

转载 作者:行者123 更新时间:2023-12-04 18:05:11 25 4
gpt4 key购买 nike

我有一个用于“准备”的 project.json 脚本,它运行一个 gulpfile 将我的凉亭内容推送到 wwwroot 中。效果很好,除了在开发期间,我必须在更新 bower.json 包后手动运行它。有什么方法可以在开发期间自动执行此操作?我通常会使用构建后脚本,但它们无处可见。我的 project.json 脚本如下所示:

  "scripts": {
"prepare": [ "gulp bower" ]
}

我喜欢的是:
  "scripts": {
"post-build": [ "gulp bower" ]
}

最佳答案

您可以使用 Task Runner Explorer自动化这个。 (使用右上角的Quick Launch,Ctrl+Alt+\,或View -> Other Windows -> Task Runner Explorer。)

找到您要添加的任务(bowerprepare,取决于您要走的路线),右键单击,然后使用上下文菜单添加绑定(bind)。

我的 gruntfile.js ,例如,将以下行添加到顶部:

/// <binding BeforeBuild='beforeBuild' AfterBuild='afterBuildMinimal' ProjectOpened='watch' />

我不确定 gulpfile.js使用完全相同的约定,但 Task Runner Explorer是要走的路,不管怎样!

关于asp.net-core-mvc - 在构建时运行脚本(例如 Gulp 或 Grunt),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30517755/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com