Errof happen when running "gulp dist "

Hi All,

I met one problem when running “gulp dist” under the folder app:
/home/paws/mediasoup/mediasoup-demo/app/gulpfile.js
58:21 error Unexpected use of file extension “json” for “./package.json” import/extensions

:heavy_multiplication_x: 1 problem (1 error, 0 warnings)

Any idea what’s the problem here?

-Best
Yaxiong

1 Like

It is explanined here. I guess this problem only exists in development environment.
https://stackoverflow.com/a/29596396/8313043

Replace line 58 with this
// const PKG = require('./package.json');
const PKG = JSON.parse(fs.readFileSync('./package.json'));