Hi,
my frontend build constantly fails for
1) [INFO] (node:1604) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.
2) ECONFLICT Unable to find suitable version for angular-animate
3) [ERROR] D:\metanome\Metanome-master\frontend\src\node_modules\browser-sync\node_modules\localtunnel\node_modules\debug\src\node.js:132
[ERROR] let val = process.env[key];
[ERROR] ^^^
for problem 1: I lowered the nodejs version before executing npm install
v4.9.12.15.11
for problem 2: I relaxed the bounds on angular-animate in bower.json
"angular-animate": "~1",
for problem3: my lowered version of node brought new problems, so i installed node again before the gulp build execution
Hi, my frontend build constantly fails for 1) [INFO] (node:1604) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version. 2) ECONFLICT Unable to find suitable version for angular-animate 3) [ERROR] D:\metanome\Metanome-master\frontend\src\node_modules\browser-sync\node_modules\localtunnel\node_modules\debug\src\node.js:132 [ERROR] let val = process.env[key]; [ERROR] ^^^
for problem 1: I lowered the nodejs version before executing npm install
for problem 2: I relaxed the bounds on angular-animate in bower.json "angular-animate": "~1", for problem3: my lowered version of node brought new problems, so i installed node again before the gulp build execution
My final fixed pom.xml is as follows:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
It worked for me and hope it helps you too.