@bullpenfi/cli 0.1.0 → 0.1.2

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/README.md CHANGED
@@ -19,4 +19,4 @@ bullpen portfolio balances
19
19
  ## Learn More
20
20
 
21
21
  - [GitHub Releases](https://github.com/BullpenFi/bullpen-cli-releases/releases)
22
- - [Documentation](https://bullpen.fi)
22
+ - [Documentation](https://cli.bullpen.fi)
package/bin/bullpen CHANGED
@@ -19,6 +19,7 @@ if (!fs.existsSync(binaryPath)) {
19
19
 
20
20
  const result = spawnSync(binaryPath, process.argv.slice(2), {
21
21
  stdio: "inherit",
22
+ env: { ...process.env, BULLPEN_MANAGED_BY_NPM: "1" },
22
23
  });
23
24
 
24
25
  if (result.error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bullpenfi/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "CLI for Bullpen prediction markets",
5
5
  "bin": {
6
6
  "bullpen": "bin/bullpen"
@@ -8,8 +8,14 @@
8
8
  "scripts": {
9
9
  "postinstall": "node scripts/postinstall.js"
10
10
  },
11
- "os": ["darwin", "linux"],
12
- "cpu": ["x64", "arm64"],
11
+ "os": [
12
+ "darwin",
13
+ "linux"
14
+ ],
15
+ "cpu": [
16
+ "x64",
17
+ "arm64"
18
+ ],
13
19
  "license": "MIT",
14
20
  "repository": {
15
21
  "type": "git",