@heroku-cli/heroku-slugs 2.0.2 → 2.0.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.
package/README.md CHANGED
@@ -38,7 +38,7 @@ $ npm install -g @heroku-cli/heroku-slugs
38
38
  $ heroku COMMAND
39
39
  running command...
40
40
  $ heroku (--version)
41
- @heroku-cli/heroku-slugs/2.0.2 linux-x64 node-v20.20.2
41
+ @heroku-cli/heroku-slugs/2.0.3 linux-x64 node-v20.20.2
42
42
  $ heroku --help [COMMAND]
43
43
  USAGE
44
44
  $ heroku COMMAND
@@ -70,7 +70,7 @@ EXAMPLES
70
70
  $ heroku slugs --app myapp
71
71
  ```
72
72
 
73
- _See code: [src/commands/slugs/index.ts](https://github.com/heroku/heroku-slugs/blob/v2.0.2/src/commands/slugs/index.ts)_
73
+ _See code: [src/commands/slugs/index.ts](https://github.com/heroku/heroku-slugs/blob/v2.0.3/src/commands/slugs/index.ts)_
74
74
 
75
75
  ## `heroku slugs:download [SLUG]`
76
76
 
@@ -97,5 +97,5 @@ EXAMPLES
97
97
  $ heroku slugs:download --app example-app v2 --no-extract-slug
98
98
  ```
99
99
 
100
- _See code: [src/commands/slugs/download.ts](https://github.com/heroku/heroku-slugs/blob/v2.0.2/src/commands/slugs/download.ts)_
100
+ _See code: [src/commands/slugs/download.ts](https://github.com/heroku/heroku-slugs/blob/v2.0.3/src/commands/slugs/download.ts)_
101
101
  <!-- commandsstop -->
@@ -96,5 +96,5 @@
96
96
  ]
97
97
  }
98
98
  },
99
- "version": "2.0.2"
99
+ "version": "2.0.3"
100
100
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heroku-cli/heroku-slugs",
3
3
  "description": "Heroku CLI Plugin to manage and download slugs",
4
- "version": "2.0.2",
4
+ "version": "2.0.3",
5
5
  "author": "Heroku",
6
6
  "bugs": {
7
7
  "url": "https://github.com/heroku/heroku-slugs/issues"
@@ -19,26 +19,19 @@
19
19
  "@heroku-cli/schema": "^2.0.0",
20
20
  "@oclif/plugin-help": "^5",
21
21
  "@types/bytes": "^3.1.4",
22
- "@types/chai": "^4",
23
22
  "@types/fs-extra": "^11.0.4",
24
- "@types/mocha": "^10.0.10",
25
- "@types/node": "20.14.8",
26
- "@types/sinon": "^21.0.1",
23
+ "@types/node": "^22.15.3",
27
24
  "@types/supports-color": "^8.1.3",
28
- "chai": "^4.4.1",
25
+ "@vitest/coverage-v8": "^3.2.4",
29
26
  "eslint": "^9.39.4",
30
27
  "eslint-config-oclif": "^6.0.144",
31
- "eslint-plugin-mocha": "^11.2.0",
32
- "mocha": "^11.7.5",
33
28
  "nock": "^14.0.0",
34
- "nyc": "^17.1.0",
35
29
  "oclif": "^4.23.0",
36
- "sinon": "^21.1.2",
37
30
  "stdout-stderr": "0.1.13",
38
31
  "strip-ansi": "^6.0.1",
39
- "ts-node": "^10.9.2",
40
32
  "tsheredoc": "^1.0.1",
41
- "typescript": "^5.8.2"
33
+ "typescript": "^5.8.2",
34
+ "vitest": "^3.2.4"
42
35
  },
43
36
  "engines": {
44
37
  "node": ">= 20"
@@ -53,16 +46,6 @@
53
46
  ],
54
47
  "license": "ISC",
55
48
  "main": "dist/index.js",
56
- "mocha": {
57
- "require": [
58
- "test/init.js",
59
- "ts-node/register"
60
- ],
61
- "watch-extensions": "ts",
62
- "recursive": true,
63
- "reporter": "spec",
64
- "timeout": 360000
65
- },
66
49
  "types": "dist/index.d.ts",
67
50
  "oclif": {
68
51
  "commands": "./dist/commands",
@@ -78,12 +61,12 @@
78
61
  "build": "rm -rf dist && tsc -b",
79
62
  "lint": "eslint .",
80
63
  "postpack": "rm -f oclif.manifest.json",
81
- "posttest": "yarn lint",
82
- "prepack": "yarn build && oclif manifest && oclif readme",
83
- "test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
64
+ "posttest": "npm run lint",
65
+ "prepack": "npm run build && oclif manifest && oclif readme",
66
+ "test": "vitest run --coverage",
84
67
  "version": "oclif readme && git add README.md"
85
68
  },
86
- "resolutions": {
87
- "serialize-javascript": "^7.0.5"
69
+ "overrides": {
70
+ "uuid": "^11.1.1"
88
71
  }
89
72
  }