i try to display the build version on my application, but when i run the app i have the error : process is not define.
How can i display the version ?
constructor( protected commonService: CommonService, protected hideShowDeleteWidgetsService: HideShowDeleteWidgetsService, protected fccGlobalConstantService: FccGlobalConstantService , protected videoChatService: VideoChatService) {
super(commonService, hideShowDeleteWidgetsService, fccGlobalConstantService, videoChatService);
console.log(process.env.npm_package_version);
console.log(process.env.VERSION);
console.log(process.version);
console.log(process);
}