for #2543 BREAKING CHANGE: semantic-release is now ESM-only. since it is used through its own executable, the impact on consuming projects should be minimal BREAKING CHANGE: references to plugin files in configs need to include the file extension because of executing in an ESM context
18 lines
430 B
JavaScript
18 lines
430 B
JavaScript
export const RELEASE_TYPE = ['patch', 'minor', 'major'];
|
|
|
|
export const FIRST_RELEASE = '1.0.0';
|
|
|
|
export const FIRSTPRERELEASE = '1';
|
|
|
|
export const COMMIT_NAME = 'semantic-release-bot';
|
|
|
|
export const COMMIT_EMAIL = 'semantic-release-bot@martynus.net';
|
|
|
|
export const RELEASE_NOTES_SEPARATOR = '\n\n';
|
|
|
|
export const SECRET_REPLACEMENT = '[secure]';
|
|
|
|
export const SECRET_MIN_SIZE = 5;
|
|
|
|
export const GIT_NOTE_REF = 'semantic-release';
|