@heroku-cli/heroku-slugs 2.0.1 → 2.0.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 +3 -3
- package/oclif.manifest.json +1 -1
- package/package.json +18 -13
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.
|
|
41
|
+
@heroku-cli/heroku-slugs/2.0.2 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.
|
|
73
|
+
_See code: [src/commands/slugs/index.ts](https://github.com/heroku/heroku-slugs/blob/v2.0.2/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.
|
|
100
|
+
_See code: [src/commands/slugs/download.ts](https://github.com/heroku/heroku-slugs/blob/v2.0.2/src/commands/slugs/download.ts)_
|
|
101
101
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heroku-cli/heroku-slugs",
|
|
3
3
|
"description": "Heroku CLI Plugin to manage and download slugs",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.2",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/heroku/heroku-slugs/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@heroku-cli/color": "2.0.
|
|
10
|
+
"@heroku-cli/color": "2.0.5",
|
|
11
11
|
"@heroku-cli/command": "^11.5.0",
|
|
12
|
-
"@heroku-cli/notifications": "1.2.
|
|
12
|
+
"@heroku-cli/notifications": "1.2.6",
|
|
13
13
|
"@oclif/core": "^2.16.0",
|
|
14
14
|
"bytes": "^3.1.2",
|
|
15
15
|
"fs-extra": "^11.3.0",
|
|
@@ -23,18 +23,17 @@
|
|
|
23
23
|
"@types/fs-extra": "^11.0.4",
|
|
24
24
|
"@types/mocha": "^10.0.10",
|
|
25
25
|
"@types/node": "20.14.8",
|
|
26
|
-
"@types/sinon": "^
|
|
26
|
+
"@types/sinon": "^21.0.1",
|
|
27
27
|
"@types/supports-color": "^8.1.3",
|
|
28
28
|
"chai": "^4.4.1",
|
|
29
|
-
"eslint": "^
|
|
30
|
-
"eslint-config-oclif": "^
|
|
31
|
-
"eslint-
|
|
32
|
-
"
|
|
33
|
-
"mocha": "^11.1.0",
|
|
29
|
+
"eslint": "^9.39.4",
|
|
30
|
+
"eslint-config-oclif": "^6.0.144",
|
|
31
|
+
"eslint-plugin-mocha": "^11.2.0",
|
|
32
|
+
"mocha": "^11.7.5",
|
|
34
33
|
"nock": "^14.0.0",
|
|
35
34
|
"nyc": "^17.1.0",
|
|
36
|
-
"oclif": "4.
|
|
37
|
-
"sinon": "^
|
|
35
|
+
"oclif": "^4.23.0",
|
|
36
|
+
"sinon": "^21.1.2",
|
|
38
37
|
"stdout-stderr": "0.1.13",
|
|
39
38
|
"strip-ansi": "^6.0.1",
|
|
40
39
|
"ts-node": "^10.9.2",
|
|
@@ -77,8 +76,14 @@
|
|
|
77
76
|
"repository": "heroku/heroku-slugs",
|
|
78
77
|
"scripts": {
|
|
79
78
|
"build": "rm -rf dist && tsc -b",
|
|
80
|
-
"lint": "eslint .
|
|
79
|
+
"lint": "eslint .",
|
|
80
|
+
"postpack": "rm -f oclif.manifest.json",
|
|
81
|
+
"posttest": "yarn lint",
|
|
82
|
+
"prepack": "yarn build && oclif manifest && oclif readme",
|
|
81
83
|
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
|
|
82
84
|
"version": "oclif readme && git add README.md"
|
|
85
|
+
},
|
|
86
|
+
"resolutions": {
|
|
87
|
+
"serialize-javascript": "^7.0.5"
|
|
83
88
|
}
|
|
84
|
-
}
|
|
89
|
+
}
|