@heroku-cli/heroku-slugs 2.0.0 → 2.0.1
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 +5 -5
- package/dist/commands/slugs/download.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/oclif.manifest.json +2 -2
- package/package.json +4 -6
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.1 linux-x64 node-v20.20.0
|
|
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.1/src/commands/slugs/index.ts)_
|
|
74
74
|
|
|
75
75
|
## `heroku slugs:download [SLUG]`
|
|
76
76
|
|
|
@@ -81,11 +81,11 @@ USAGE
|
|
|
81
81
|
$ heroku slugs:download [SLUG] -a <value> [-e] [-r <value>]
|
|
82
82
|
|
|
83
83
|
ARGUMENTS
|
|
84
|
-
SLUG name or ID of slug
|
|
84
|
+
[SLUG] name or ID of slug
|
|
85
85
|
|
|
86
86
|
FLAGS
|
|
87
87
|
-a, --app=<value> (required) app to run command against
|
|
88
|
-
-e, --no-extract-slug
|
|
88
|
+
-e, --no-extract-slug don't extract slug after download
|
|
89
89
|
-r, --remote=<value> git remote of app to use
|
|
90
90
|
|
|
91
91
|
DESCRIPTION
|
|
@@ -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.1/src/commands/slugs/download.ts)_
|
|
101
101
|
<!-- commandsstop -->
|
|
@@ -59,7 +59,7 @@ SlugsDownload.examples = [
|
|
|
59
59
|
];
|
|
60
60
|
SlugsDownload.flags = {
|
|
61
61
|
app: command_1.flags.app({ required: true }),
|
|
62
|
-
'no-extract-slug': command_1.flags.boolean({ char: 'e', default: false, description: '
|
|
62
|
+
'no-extract-slug': command_1.flags.boolean({ char: 'e', default: false, description: "don't extract slug after download" }),
|
|
63
63
|
remote: command_1.flags.remote(),
|
|
64
64
|
};
|
|
65
65
|
exports.default = SlugsDownload;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["../src/index.ts","../src/commands/slugs/download.ts","../src/commands/slugs/index.ts","../src/lib/download.ts"],"version":"5.
|
|
1
|
+
{"root":["../src/index.ts","../src/commands/slugs/download.ts","../src/commands/slugs/index.ts","../src/lib/download.ts"],"version":"5.9.3"}
|
package/oclif.manifest.json
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"no-extract-slug": {
|
|
27
27
|
"char": "e",
|
|
28
|
-
"description": "
|
|
28
|
+
"description": "don't extract slug after download",
|
|
29
29
|
"name": "no-extract-slug",
|
|
30
30
|
"allowNo": false,
|
|
31
31
|
"type": "boolean"
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
]
|
|
97
97
|
}
|
|
98
98
|
},
|
|
99
|
-
"version": "2.0.
|
|
99
|
+
"version": "2.0.1"
|
|
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.
|
|
4
|
+
"version": "2.0.1",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bugs": {
|
|
7
7
|
"url": "https://github.com/heroku/heroku-slugs/issues"
|
|
@@ -23,7 +23,7 @@
|
|
|
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": "^17.0.
|
|
26
|
+
"@types/sinon": "^17.0.4",
|
|
27
27
|
"@types/supports-color": "^8.1.3",
|
|
28
28
|
"chai": "^4.4.1",
|
|
29
29
|
"eslint": "^8.57.0",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"strip-ansi": "^6.0.1",
|
|
40
40
|
"ts-node": "^10.9.2",
|
|
41
41
|
"tsheredoc": "^1.0.1",
|
|
42
|
-
"typescript": "^5.
|
|
42
|
+
"typescript": "^5.8.2"
|
|
43
43
|
},
|
|
44
44
|
"engines": {
|
|
45
45
|
"node": ">= 20"
|
|
@@ -78,9 +78,7 @@
|
|
|
78
78
|
"scripts": {
|
|
79
79
|
"build": "rm -rf dist && tsc -b",
|
|
80
80
|
"lint": "eslint . --ext .ts --config .eslintrc",
|
|
81
|
-
"postpack": "rm -f oclif.manifest.json",
|
|
82
|
-
"prepack": "yarn build && oclif manifest && oclif readme",
|
|
83
81
|
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
|
|
84
82
|
"version": "oclif readme && git add README.md"
|
|
85
83
|
}
|
|
86
|
-
}
|
|
84
|
+
}
|