Open speeday opened 4 years ago
Hi,
Just need to note to update gulpfile.js file related to Gulp from v3 to v4. As Gulp v3 is incompatible with Node v11+ which shows following issues.
gulpfile.js
ReferenceError: primordials is not defined
This can be solve in following ways.
To apply 3rd Option, follow are the changes needed.
npm-shrinkwrap.json
package.json
{ "dependencies": { "graceful-fs": { "version": "4.2.2" } } }
npm install
This will solve it.
Hi,
Just need to note to update
gulpfile.js
file related to Gulp from v3 to v4. As Gulp v3 is incompatible with Node v11+ which shows following issues.ReferenceError: primordials is not defined
This can be solve in following ways.
npm-shrinkwrap.json
file beside ofpackage.json
file.{ "dependencies": { "graceful-fs": { "version": "4.2.2" } } }
npm install