@stripe/link-cli 0.7.0 → 0.7.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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +3 -1
package/dist/cli.js CHANGED
@@ -16463,7 +16463,7 @@ function cacheUpdateInfo(value, ttlMs = UPDATE_CACHE_TTL_MS) {
16463
16463
  }
16464
16464
 
16465
16465
  // src/cli.tsx
16466
- var cliVersion = "0.7.0";
16466
+ var cliVersion = "0.7.2";
16467
16467
  var cliName = "@stripe/link-cli";
16468
16468
  var defaultHeaders = {
16469
16469
  "User-Agent": `link-cli/${cliVersion}`
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@stripe/link-cli",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "link-cli": "./dist/cli.js"
7
7
  },
8
8
  "files": [
9
9
  "dist",
10
+ "!dist/sea",
10
11
  "README.md",
11
12
  "LICENSE"
12
13
  ],
@@ -47,6 +48,7 @@
47
48
  },
48
49
  "scripts": {
49
50
  "build": "tsup",
51
+ "build:sea": "tsup --config tsup.sea.config.ts",
50
52
  "typecheck": "tsc",
51
53
  "test": "vitest run",
52
54
  "dev": "tsx src/cli.tsx"