biz-a-cli 2.3.28 → 2.3.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/app.js CHANGED
@@ -119,7 +119,7 @@ yargs(process.argv.slice(2))
119
119
  printInfo(`===================\n${fileName.toUpperCase()}\n===================`)
120
120
 
121
121
  const minifyResult = uglify.minify(dataFile.toString(), {compress: false, mangle: false})
122
- if (minifyResult.error ) {throw (`${fileName} : ` + minifyResult.error)}
122
+ if (minifyResult.error ) {throw (`${fileName}:${minifyResult.error.line}:${minifyResult.error.col}: ` + minifyResult.error)}
123
123
  let jsMinData = minifyResult.code
124
124
  jsMinData = jsMinData.replace('module.exports=get;', '') // Ex : at "executeBlockLib.js" of Imamatek App, will throw error. We need this line code for testing or debugging
125
125
  const minifiedBuffer = Buffer.from(jsMinData)
package/envs/env.js CHANGED
@@ -5,6 +5,6 @@ export const env = {
5
5
  CDM_MONGO_LINK: 'mongodb+srv://imm_cdm:' +
6
6
  encodeURIComponent('imm@2019') + '@imm-cdm.ohcqt.mongodb.net/?retryWrites=true&w=majority',
7
7
  COMPANY_REGISTER: 'companyregister',
8
- BIZA_SERVER_LINK: 'https://biz-a.herokuapp.com'
9
- //BIZA_SERVER_LINK: 'http://localhost:3000'
8
+ // BIZA_SERVER_LINK: 'https://biz-a.herokuapp.com'
9
+ BIZA_SERVER_LINK: 'http://localhost:3000'
10
10
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "biz-a-cli",
3
3
  "nameDev": "biz-a-cli-dev",
4
- "version": "2.3.28",
4
+ "version": "2.3.29",
5
5
  "versionDev": "0.0.30",
6
6
  "description": "",
7
7
  "main": "bin/index.js",