2

だから私はasp.netコアプロジェクトに取り組んでおり、gulp-injectパッケージを使用してスクリプトを挿入しようとしています。しかし、gulpfile.js で gulp-inject モジュールを使用しようとすると、タスク ランナー ウィンドウでこのエラーがスローされます。ここで何が欠けていますか?

[package.json に gulp-inject

package.json の gulp-inject

タスクランナーエラー

タスクランナーエラー

4

1 に答える 1

1

This is a known issue. You need to upgrade your version of NodeJS to v4.

To see your version, open a command prompt and run:

node --version  

To upgrade, go to https://nodejs.org and find the downloads or look at How do I update node and npm on windows?

If you're using Visual Studio 2015, also check the version of NodeJS that it is using. Options > Projects and Solutions > External Web Tools shows the locations. From there either:

  1. add C:\Program Files\nodejs as the new top entry, or
  2. move the $(PATH) to the top if it is already up-to-date.

External Web Tools

于 2016-04-25T18:39:16.717 に答える