Skip to content

Commit

Permalink
feat: export current release-please version as VERSION constant (#2159)
Browse files Browse the repository at this point in the history
* build: switch to manifest

* feat: export current release-please version as VERSION
  • Loading branch information
chingor13 committed Dec 11, 2023
1 parent a31ee08 commit 264af84
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"release-type": "node",
"include-component-in-tag": false,
"packages": {
".": {}
".": {
"extra-files": [
"src/index.ts"
]
}
}
}
4 changes: 4 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,7 @@ export {Logger, setLogger} from './util/logger';
export {GitHub} from './github';
export const configSchema = require('../../schemas/config.json');
export const manifestSchema = require('../../schemas/manifest.json');

// x-release-please-start-version
export const VERSION = '16.4.0';
// x-release-please-end

0 comments on commit 264af84

Please sign in to comment.