vipcare 0.3.2 → 0.3.3

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.
Files changed (2) hide show
  1. package/bin/vip.js +2 -1
  2. package/package.json +1 -1
package/bin/vip.js CHANGED
@@ -76,7 +76,8 @@ try {
76
76
  } catch {}
77
77
 
78
78
  const program = new Command();
79
- program.name('vip').description('VIP Profile Builder - Auto-build VIP person profiles from public data').version('0.3.2');
79
+ const pkg = JSON.parse(fs.readFileSync(new URL('../package.json', import.meta.url), 'utf-8'));
80
+ program.name('vip').description('VIP Profile Builder - Auto-build VIP person profiles from public data').version(pkg.version, '-v, --version');
80
81
 
81
82
  // --- add ---
82
83
  program.command('add')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vipcare",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Auto-build VIP person profiles from Twitter/LinkedIn public data",
5
5
  "type": "module",
6
6
  "bin": {