-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: code is in in ES Modules now and earliest node support is 18
- Loading branch information
1 parent
fdc6335
commit f33b9bc
Showing
143 changed files
with
2,324 additions
and
2,357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
12.18.0 | ||
18.20.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
12.18.0 | ||
18.20.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ node_modules | |
dist | ||
sandbox | ||
|
||
src/lib/config/defaultConfig.js | ||
src/lib/config/defaultConfig.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
/* version */ | ||
export { default as getCurrentVersion } from './lib/util/getCurrentVersion'; | ||
export { default as getNextVersion } from './lib/util/getNextVersion'; | ||
export { default as updateVersion } from './lib/util/updateVersion'; | ||
export { default as isValidVersion } from './lib/util/isValidVersion'; | ||
export { default as getReleaseTag } from './lib/util/getReleaseTag'; | ||
export { default as getReleaseType } from './lib/util/getReleaseType'; | ||
export { default as getCurrentVersion } from './lib/util/getCurrentVersion.js'; | ||
export { default as getNextVersion } from './lib/util/getNextVersion.js'; | ||
export { default as updateVersion } from './lib/util/updateVersion.js'; | ||
export { default as isValidVersion } from './lib/util/isValidVersion.js'; | ||
export { default as getReleaseTag } from './lib/util/getReleaseTag.js'; | ||
export { default as getReleaseType } from './lib/util/getReleaseType.js'; | ||
|
||
/* git */ | ||
export { default as getCommitTitles } from './lib/git/getCommitTitles'; | ||
export { default as getCommitBodies } from './lib/git/getCommitBodies'; | ||
export { default as hasLocalBranch } from './lib/git/hasLocalBranch'; | ||
export { default as hasRemoteBranch } from './lib/git/hasRemoteBranch'; | ||
export { default as getCurrentBranch } from './lib/git/getCurrentBranch'; | ||
export { default as getLatestCommitMessage } from './lib/git/getLatestCommitMessage'; | ||
export { default as getRepoInfo } from './lib/git/getRepoInfo'; | ||
export { default as hasRemote } from './lib/git/hasRemote'; | ||
export { default as getRepoURLWithToken } from './lib/git/getRepoURLWithToken'; | ||
export { default as getRepoURLWithTokenMasked } from './lib/git/getRepoURLWithTokenMasked'; | ||
export { default as getLatestCommitHash } from './lib/git/getLatestCommitHash'; | ||
export { default as getCommitUrl } from './lib/git/getCommitUrl'; | ||
export { default as isWorkingTreeClean } from './lib/git/isWorkingTreeClean'; | ||
export { default as hasTag } from './lib/git/hasTag'; | ||
export { default as getRemoteBranches } from './lib/git/getRemoteBranches'; | ||
export { default as getGitConfig } from './lib/git/getGitConfig'; | ||
export { default as getCommitTitles } from './lib/git/getCommitTitles.js'; | ||
export { default as getCommitBodies } from './lib/git/getCommitBodies.js'; | ||
export { default as hasLocalBranch } from './lib/git/hasLocalBranch.js'; | ||
export { default as hasRemoteBranch } from './lib/git/hasRemoteBranch.js'; | ||
export { default as getCurrentBranch } from './lib/git/getCurrentBranch.js'; | ||
export { default as getLatestCommitMessage } from './lib/git/getLatestCommitMessage.js'; | ||
export { default as getRepoInfo } from './lib/git/getRepoInfo.js'; | ||
export { default as hasRemote } from './lib/git/hasRemote.js'; | ||
export { default as getRepoURLWithToken } from './lib/git/getRepoURLWithToken.js'; | ||
export { default as getRepoURLWithTokenMasked } from './lib/git/getRepoURLWithTokenMasked.js'; | ||
export { default as getLatestCommitHash } from './lib/git/getLatestCommitHash.js'; | ||
export { default as getCommitUrl } from './lib/git/getCommitUrl.js'; | ||
export { default as isWorkingTreeClean } from './lib/git/isWorkingTreeClean.js'; | ||
export { default as hasTag } from './lib/git/hasTag.js'; | ||
export { default as getRemoteBranches } from './lib/git/getRemoteBranches.js'; | ||
export { default as getGitConfig } from './lib/git/getGitConfig.js'; | ||
|
||
/* shell */ | ||
export { default as exec } from './lib/shell/exec'; | ||
export { default as silentExec } from './lib/shell/silentExec'; | ||
export { default as exec } from './lib/shell/exec.js'; | ||
export { default as silentExec } from './lib/shell/silentExec.js'; | ||
|
||
/* config */ | ||
export { default as loadConfig } from './lib/config/loadConfig'; | ||
export { default as loadConfig } from './lib/config/loadConfig.js'; | ||
|
||
/* etc */ | ||
export { default as getAppName } from './lib/util/getAppName'; | ||
export { default as expandPackageList } from './lib/util/expandPackageList'; | ||
export { default as getCommitNumbersPerType } from './lib/util/getCommitNumbersPerType'; | ||
export { default as getAppName } from './lib/util/getAppName.js'; | ||
export { default as expandPackageList } from './lib/util/expandPackageList.js'; | ||
export { default as getCommitNumbersPerType } from './lib/util/getCommitNumbersPerType.js'; |
2 changes: 1 addition & 1 deletion
2
packages/shipjs-lib/src/lib/config/__tests__/defaultConfig.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
packages/shipjs-lib/src/lib/config/__tests__/loadConfig.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/shipjs-lib/src/lib/config/__tests__/mergeConfig.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
packages/shipjs-lib/src/lib/git/__tests__/getCurrentBranch.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
packages/shipjs-lib/src/lib/git/__tests__/getLatestCommitMessage.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
packages/shipjs-lib/src/lib/git/__tests__/getRemoteBranches.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
packages/shipjs-lib/src/lib/git/__tests__/hasLocalBranch.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/shipjs-lib/src/lib/git/__tests__/hasRemoteBranch.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
packages/shipjs-lib/src/lib/git/__tests__/isWorkingTreeClean.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
packages/shipjs-lib/src/lib/util/__tests__/expandPackageList.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
packages/shipjs-lib/src/lib/util/__tests__/getNextVersion.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/shipjs-lib/src/lib/util/__tests__/getReleaseTag.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/shipjs-lib/src/lib/util/__tests__/getReleaseType.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
packages/shipjs-lib/src/lib/util/__tests__/updateVersion.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.