13

postcssautoprefixerを使用しており、新しい Linux サーバーに移動した後、何かが間違っているに違いありませんが、これが何であるかわかりません。エラーが発生します:

/home/ec2-user/Enviziion/Muveoo/Server/node_modules/postcss/lib/lazy-result.js:157
        this.processing = new Promise(function (resolve, reject) {
                              ^
ReferenceError: Promise is not defined

これは以下によって引き起こされます:

var autoprefixer = require('autoprefixer');
var postCSS = require('postcss');

function prefix(css, res, type, fullPath) {
    postCSS([autoprefixer]).process(css).then(function(result) {
        var css = result.css;
        var length = css.length;
        res.writeHead(200, {
            'Content-Length' : length,
            'Content-Type' : type
        });
        res.write(css);
        res.end();
    });
}

私はこの問題を調査しましたが、問題の発生はすべて非常に初期のバージョンの node.js で発生しているようです。たとえば、次のようになります。

そして、解決策は常に「ノードの更新」のようです。

しかし、私のものは最新のようです:

[ec2-user@ip-172-31-22-79 Server]$ node -v
v5.7.0

私の問題は何ですか?

4

2 に答える 2