@dsh-cc/command-release-notes 0.5.0 → 0.6.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/lib/index.d.ts.map +1 -1
- package/lib/index.js +3 -2
- package/lib/index.js.map +1 -1
- package/package.json +7 -4
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAA;AAKlD,eAAO,MAAM,IAAI,0BAA0B,CAAA;AAC3C,eAAO,MAAM,MAAM,UAAe,CAAA;AAgBlC;;;GAGG;AACH,wBAAgB,KAAK,CAAC,GAAG,EAAE,OAAO,GAAG,IAAI,CAOxC"}
|
package/lib/index.js
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
* @module @dsh-cc/command-release-notes
|
|
5
5
|
*/
|
|
6
6
|
import { renderReleaseNotes } from "./release-notes.js";
|
|
7
|
+
import { helpable } from '@dsh-cc/command-usage';
|
|
7
8
|
export const name = 'command-release-notes';
|
|
8
9
|
export const inject = ['commands'];
|
|
9
10
|
/** Parse an optional positive line-count argument from the raw input. */
|
|
@@ -24,11 +25,11 @@ function executeReleaseNotes(invocation) {
|
|
|
24
25
|
* @param ctx - context carrying the command registry.
|
|
25
26
|
*/
|
|
26
27
|
export function apply(ctx) {
|
|
27
|
-
ctx.commands.register({
|
|
28
|
+
ctx.commands.register(helpable({
|
|
28
29
|
name: 'release-notes',
|
|
29
30
|
description: 'print the bundled release notes (changelog)',
|
|
30
31
|
input: { hint: '[lines]' },
|
|
31
32
|
handler: (invocation) => executeReleaseNotes(invocation),
|
|
32
|
-
});
|
|
33
|
+
}));
|
|
33
34
|
}
|
|
34
35
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAA;AACvD,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAEhD,MAAM,CAAC,MAAM,IAAI,GAAG,uBAAuB,CAAA;AAC3C,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC,UAAU,CAAC,CAAA;AAElC,yEAAyE;AACzE,SAAS,cAAc,CAAC,QAAgB;IACtC,MAAM,KAAK,GAAG,QAAQ,CAAC,IAAI,EAAE,CAAA;IAC7B,MAAM,KAAK,GAAG,MAAM,CAAC,QAAQ,CAAC,KAAK,EAAE,EAAE,CAAC,CAAA;IACxC,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,IAAI,KAAK,IAAI,CAAC;QAAE,OAAO,SAAS,CAAA;IACjF,OAAO,KAAK,CAAA;AACd,CAAC;AAED,wCAAwC;AACxC,SAAS,mBAAmB,CAAC,UAA6B;IACxD,MAAM,KAAK,GAAG,cAAc,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAA;IACjD,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,kBAAkB,CAAC,SAAS,EAAE,KAAK,CAAC,EAAE,CAAA;AACxE,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,KAAK,CAAC,GAAY;IAChC,GAAG,CAAC,QAAQ,CAAC,QAAQ,CAAC,QAAQ,CAAC;QAC7B,IAAI,EAAE,eAAe;QACrB,WAAW,EAAE,6CAA6C;QAC1D,KAAK,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE;QAC1B,OAAO,EAAE,CAAC,UAA6B,EAAE,EAAE,CAAC,mBAAmB,CAAC,UAAU,CAAC;KAC5E,CAAC,CAAC,CAAA;AACL,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dsh-cc/command-release-notes",
|
|
3
3
|
"description": "Human-facing slash command to print the bundled release notes changelog",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.6.1",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/dsh-cc/dsh-cc.git",
|
|
@@ -24,10 +24,13 @@
|
|
|
24
24
|
"lib"
|
|
25
25
|
],
|
|
26
26
|
"license": "Apache-2.0",
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@dsh-cc/command-usage": "^0.6.1"
|
|
29
|
+
},
|
|
27
30
|
"peerDependencies": {
|
|
28
|
-
"@deepseek-ai/dsh-commands": ">=0.1.
|
|
29
|
-
"@deepseek-ai/dsh-invariants": ">=0.1.
|
|
30
|
-
"@deepseek-ai/cordis": ">=0.1.
|
|
31
|
+
"@deepseek-ai/dsh-commands": ">=0.1.2-rc.1",
|
|
32
|
+
"@deepseek-ai/dsh-invariants": ">=0.1.2-rc.1",
|
|
33
|
+
"@deepseek-ai/cordis": ">=0.1.2-rc.1"
|
|
31
34
|
},
|
|
32
35
|
"devDependencies": {
|
|
33
36
|
"@deepseek-ai/cordis-plugin-loader": "link:../../../../deepseek-harness/vendor/loader",
|