问题标签 [task-runner-explorer]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
node.js - webpack.js 的新 npm 安装引发 Block-scope 错误
我是 Webpack、Visual Studio 和 Task Runner 的新手,但这些都是我被告知在工作中安装/使用的东西,所以我正在努力弄清楚如何让它全部工作。我刚刚使用 NPM 全局安装了 webpack 和 webpack-cli 的新副本。我将 Task Runner 插件安装到 Visual Studio,并使用提供的 Run > Development 选项。神秘的是,我的机器是唯一出现以下错误的机器,没有人知道为什么:
我正在使用最新版本的 NodeJS 和 NPM。任何想法为什么未经修改的 webpack 下载会引发块范围错误?
编辑:
我看到这个问题得到了一些关注,所以我想我应该提到这个问题已经解决了。不幸的是,解决方案是完全卸载 webpack 和 webpack-cli 并重新安装它们。然后它就起作用了。为什么...?谁知道?我听说其他人也遇到过这个问题,虽然我从第一次开始就没有重现它。
visual-studio-2017 - Visual Studio 更新 15.8 后 Gruntfile 不会加载
我将 Visual Studio 更新到 15.8,现在尝试使用 Task Runner Explorer 编译我的 less 文件时出现以下错误:
欢迎任何想法...
编辑
从命令行运行时它工作正常,所以我认为这只是 Task Runner Explorer 的问题。
javascript - 如何获取正在使用 gulp.src() 处理的当前文件名
我必须对文件夹中的多个 json 文件运行某些 gulp 任务,但该任务会根据文件名获取不同位置的文件。
我可以通过在 cmd 中将文件名作为参数传递来运行任务,但我想自动化脚本,以便为 src 位置中的所有文件执行它。
任何帮助将不胜感激。
visual-studio - 使用 gulp 在 Visual Studio 2019 中将 sass 编译为 css
好的,所以我遵循了如何在 Visual Studio 2019(asp.net core 2.2)中将 sass 文件编译为 css 文件的过程,但不知何故我收到以下错误
到目前为止,我已经创建了 package.json 文件
和 gulpfile.js
所以根据错误信息,以下目录不存在 C:\Users\user1\Source\Repos\Admin2Mvc\Admin2Mvc\node_modules\node-sass\vendor
我看到 C:\Users\user1\Source\Repos\Admin2Mvc\Admin2Mvc\node_modules\node-sass 目录,但里面没有 /vendor 子目录。
我在这里做错了什么?
node.js - 配置 Visual Studio 的 Task Runner Explorer 使用哪个 NPM?
在通常的 Windows 命令行中,我看到:
现在我正在使用 Visual Studio Professional 2017:如果我通过Tools > NuGet Packet Manager > Package Manager console打开一个(Powershell)终端,我会看到我喜欢的全局安装:
但是,如果我Defaults > version
在Task Runner Explorer中选择,我会看到以下输出:
where npm
这不是我想要的版本,也不是我在命令窗口中以!开头看到的任何安装。
唯一可行的方法是,由于 Task Runner Explorer 中的 PATH 设置而选择了另一个安装位置。这是一个正确的结论吗?我还希望 Task Runner Explorer 使用全局安装,但我该怎么做呢?
vue.js - 运行 watch-development 时,Webpack 从节点模块抛出大量错误
在运行 watch-development 时,我被节点模块中的许多错误所困扰,甚至不知道从哪里开始解决其中的一些错误。也许我的 webpack 配置有问题,但我已经尝试寻找解决方案好几天了,但一无所获
一些错误:
我有数百个这样的错误都来自我的节点模块,主要是抱怨它找不到模块,但也有一些抱怨它找不到名称'x'
这是我的 webpack 配置:
这是我的文件结构的样子:
visual-studio - How to run npm audit using the Task Runner Explorer?
I guess it is trivial, but I did not manage to figure out how to adjust my package.json
so that I could run npm audit
using the Task Runner Explorer by Mad Kirstensen within Visual Studio (Professional 2017).
My package.json
starts with
The 2nd entry in the section scripts
works fine, the 1st one does not, since the Task Runner Explorer always adds a cmd.exe /c npm run
as prefix to all scripts defined in package.json
. This is what also what the error message says:
How do I have to modify my package.json
to be able to start a npm audit
using the Task Runner Explorer?