web-dev-qa-db-ja.com

NodeJS [DEP0097] DeprecationWarning:

このエラーを手伝ってくれませんか?

(node:6692)[DEP0097] DeprecationWarning:MakeCallbackでのドメインプロパティの使用は非推奨になりました。代わりに、MakeCallbackのasync_contextバリアントまたはAsyncResourceクラスを使用してください。プラグイン「webpack-stream」の未処理の拒否エラー

コーディス

import gulp from 'gulp';
import yargs from 'yargs';
import sass from 'gulp-sass';
import cleanCSS from 'gulp-clean-css';
import gulpif from 'gulp-if';
import sourcemaps from 'gulp-sourcemaps';
import imagemin from 'gulp-imagemin';
import del from 'del';
import webpack from 'webpack-stream';  

export const scripts = () => {
    return gulp.src(paths.scripts.src)
    .pipe(webpack({
        module: {
            rules: [{
                test: /\.js$/,
                use: {
                    loader: 'babel-loader',
                    options: {
                        presets: ['@babel/preset-env']
                    }
                }
                }]
        },
        output : {
            filename: 'bundle.js'
        }
    }))
    .pipe(gulp.dest(paths.scripts.dest));
} 

そしてpackage.jsonから:

    "devDependencies": {
    "@babel/core": "^7.4.5",
    "@babel/preset-env": "^7.4.5",
    "babel-loader": "^7.1.5",
    "babel-preset-env": "^1.7.0",
    "babel-register": "^6.26.0",
    "del": "^4.1.1",
    "gulp": "^4.0.2",
    "gulp-clean-css": "^4.2.0",
    "gulp-if": "^2.0.2",
    "gulp-imagemin": "^6.0.0",
    "gulp-sass": "^4.0.2",
    "gulp-sourcemaps": "^2.6.5",
    "node-sass": "^4.12.0",
    "webpack": "^4.32.2",
    "webpack-stream": "^5.2.1",
    "yargs": "^13.2.4"
  }

何をアップグレード/追加する必要がありますか?

8
Dragos Jianu

友人からこの問題を解決するように頼まれましたが、私のシステムではこの問題を再現できません。

私がこれを見つけるまで Doc

DEP0097: MakeCallback with domain property#
node v10.0.0
Runtime deprecation.
Type: Runtime

Users of MakeCallback that add the domain property to carry context, should start 
using the async_context variant of MakeCallback or CallbackScope, or the 
high-level AsyncResource class.

次に、アップグレードによってノードバージョンを変更し、ダウングレードした後、正常に機能し、エラーは発生しませんでした。

これは、実行時の特定のノードv10の問題です。私は非推奨がどこから示されているのかはわかりませんが、ほとんどの場合、非同期/待機およびプロミスコードです。

1
Ashok