You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed ts-appversion in my angular project and ran: node ./node_modules/@saithodev/ts-appversion/index.js
and got the following error:
[NgAppVersion] Cannot find package.json in root path. Skipping...
Looking in ./node_modules/@saithodev/ts-appversion/index.js I changed line 8 from: let rootPath = path.join('..', '..');
to: let rootPath = path.join('..', '..', '..');
This seemed to fix the error.
The text was updated successfully, but these errors were encountered:
I installed ts-appversion in my angular project and ran:
node ./node_modules/@saithodev/ts-appversion/index.js
and got the following error:
Looking in ./node_modules/@saithodev/ts-appversion/index.js I changed line 8 from:
let rootPath = path.join('..', '..');
to:
let rootPath = path.join('..', '..', '..');
This seemed to fix the error.
The text was updated successfully, but these errors were encountered: