Skip to content

Commit 264af84

Browse files
authored
feat: export current release-please version as VERSION constant (#2159)
* build: switch to manifest * feat: export current release-please version as VERSION
1 parent a31ee08 commit 264af84

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

release-please-config.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"release-type": "node",
44
"include-component-in-tag": false,
55
"packages": {
6-
".": {}
6+
".": {
7+
"extra-files": [
8+
"src/index.ts"
9+
]
10+
}
711
}
812
}

src/index.ts

+4
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,7 @@ export {Logger, setLogger} from './util/logger';
6161
export {GitHub} from './github';
6262
export const configSchema = require('../../schemas/config.json');
6363
export const manifestSchema = require('../../schemas/manifest.json');
64+
65+
// x-release-please-start-version
66+
export const VERSION = '16.4.0';
67+
// x-release-please-end

0 commit comments

Comments
 (0)