Comparing version 0.1.0 to 0.2.0
export { getCommitMessages } from './get-commit-messages'; | ||
export { getRepoBump } from './get-repo-bump'; | ||
export { getWorkspacesBumps } from './get-workspaces-bumps'; | ||
export { parseRepoCommitMessage } from './parse-repo-commit-message'; | ||
export { parseWorkspacesCommitMessage } from './parse-workspaces-commit-message'; | ||
export { writeRepoPublishCommit } from './write-repo-publish-commit'; | ||
export { writeWorkspacesPublishCommit } from './write-workspaces-publish-commit'; | ||
export { writeRepoPublishTag } from './write-repo-publish-tag'; | ||
export { writeWorkspacesPublishTags } from './write-workspaces-publish-tags'; | ||
export { writeWorkspacesDependenciesCommit } from './write-workspaces-dependencies-commit'; | ||
export { makeRepoCommit } from './make-repo-commit'; | ||
export { makeWorkspacesCommit } from './make-workspaces-commit'; | ||
export { getBumps } from './get-bumps'; | ||
export { parseCommitMessage } from './parse-commit-message'; | ||
export { writePublishCommit } from './write-publish-commit'; | ||
export { writePublishTags } from './write-publish-tags'; | ||
export { writeDependenciesCommit } from './write-dependencies-commit'; | ||
export { makeCommit } from './make-commit'; | ||
export { pushCommitsAndTags } from './push-commits-and-tags'; | ||
export * from './types'; |
@@ -8,13 +8,8 @@ "use strict"; | ||
getCommitMessages: true, | ||
getRepoBump: true, | ||
getWorkspacesBumps: true, | ||
parseRepoCommitMessage: true, | ||
parseWorkspacesCommitMessage: true, | ||
writeRepoPublishCommit: true, | ||
writeWorkspacesPublishCommit: true, | ||
writeRepoPublishTag: true, | ||
writeWorkspacesPublishTags: true, | ||
writeWorkspacesDependenciesCommit: true, | ||
makeRepoCommit: true, | ||
makeWorkspacesCommit: true, | ||
getBumps: true, | ||
parseCommitMessage: true, | ||
writePublishCommit: true, | ||
writePublishTags: true, | ||
writeDependenciesCommit: true, | ||
makeCommit: true, | ||
pushCommitsAndTags: true | ||
@@ -28,68 +23,38 @@ }; | ||
}); | ||
Object.defineProperty(exports, "getRepoBump", { | ||
Object.defineProperty(exports, "getBumps", { | ||
enumerable: true, | ||
get: function () { | ||
return _getRepoBump.getRepoBump; | ||
return _getBumps.getBumps; | ||
} | ||
}); | ||
Object.defineProperty(exports, "getWorkspacesBumps", { | ||
Object.defineProperty(exports, "parseCommitMessage", { | ||
enumerable: true, | ||
get: function () { | ||
return _getWorkspacesBumps.getWorkspacesBumps; | ||
return _parseCommitMessage.parseCommitMessage; | ||
} | ||
}); | ||
Object.defineProperty(exports, "parseRepoCommitMessage", { | ||
Object.defineProperty(exports, "writePublishCommit", { | ||
enumerable: true, | ||
get: function () { | ||
return _parseRepoCommitMessage.parseRepoCommitMessage; | ||
return _writePublishCommit.writePublishCommit; | ||
} | ||
}); | ||
Object.defineProperty(exports, "parseWorkspacesCommitMessage", { | ||
Object.defineProperty(exports, "writePublishTags", { | ||
enumerable: true, | ||
get: function () { | ||
return _parseWorkspacesCommitMessage.parseWorkspacesCommitMessage; | ||
return _writePublishTags.writePublishTags; | ||
} | ||
}); | ||
Object.defineProperty(exports, "writeRepoPublishCommit", { | ||
Object.defineProperty(exports, "writeDependenciesCommit", { | ||
enumerable: true, | ||
get: function () { | ||
return _writeRepoPublishCommit.writeRepoPublishCommit; | ||
return _writeDependenciesCommit.writeDependenciesCommit; | ||
} | ||
}); | ||
Object.defineProperty(exports, "writeWorkspacesPublishCommit", { | ||
Object.defineProperty(exports, "makeCommit", { | ||
enumerable: true, | ||
get: function () { | ||
return _writeWorkspacesPublishCommit.writeWorkspacesPublishCommit; | ||
return _makeCommit.makeCommit; | ||
} | ||
}); | ||
Object.defineProperty(exports, "writeRepoPublishTag", { | ||
enumerable: true, | ||
get: function () { | ||
return _writeRepoPublishTag.writeRepoPublishTag; | ||
} | ||
}); | ||
Object.defineProperty(exports, "writeWorkspacesPublishTags", { | ||
enumerable: true, | ||
get: function () { | ||
return _writeWorkspacesPublishTags.writeWorkspacesPublishTags; | ||
} | ||
}); | ||
Object.defineProperty(exports, "writeWorkspacesDependenciesCommit", { | ||
enumerable: true, | ||
get: function () { | ||
return _writeWorkspacesDependenciesCommit.writeWorkspacesDependenciesCommit; | ||
} | ||
}); | ||
Object.defineProperty(exports, "makeRepoCommit", { | ||
enumerable: true, | ||
get: function () { | ||
return _makeRepoCommit.makeRepoCommit; | ||
} | ||
}); | ||
Object.defineProperty(exports, "makeWorkspacesCommit", { | ||
enumerable: true, | ||
get: function () { | ||
return _makeWorkspacesCommit.makeWorkspacesCommit; | ||
} | ||
}); | ||
Object.defineProperty(exports, "pushCommitsAndTags", { | ||
@@ -104,24 +69,14 @@ enumerable: true, | ||
var _getRepoBump = require("./get-repo-bump"); | ||
var _getBumps = require("./get-bumps"); | ||
var _getWorkspacesBumps = require("./get-workspaces-bumps"); | ||
var _parseCommitMessage = require("./parse-commit-message"); | ||
var _parseRepoCommitMessage = require("./parse-repo-commit-message"); | ||
var _writePublishCommit = require("./write-publish-commit"); | ||
var _parseWorkspacesCommitMessage = require("./parse-workspaces-commit-message"); | ||
var _writePublishTags = require("./write-publish-tags"); | ||
var _writeRepoPublishCommit = require("./write-repo-publish-commit"); | ||
var _writeDependenciesCommit = require("./write-dependencies-commit"); | ||
var _writeWorkspacesPublishCommit = require("./write-workspaces-publish-commit"); | ||
var _makeCommit = require("./make-commit"); | ||
var _writeRepoPublishTag = require("./write-repo-publish-tag"); | ||
var _writeWorkspacesPublishTags = require("./write-workspaces-publish-tags"); | ||
var _writeWorkspacesDependenciesCommit = require("./write-workspaces-dependencies-commit"); | ||
var _makeRepoCommit = require("./make-repo-commit"); | ||
var _makeWorkspacesCommit = require("./make-workspaces-commit"); | ||
var _pushCommitsAndTags = require("./push-commits-and-tags"); | ||
@@ -128,0 +83,0 @@ |
@@ -1,2 +0,2 @@ | ||
import { TBumpType } from '@auto/utils'; | ||
import { TBumpType } from '@auto/utils/node/'; | ||
export declare type TGitOptions = { | ||
@@ -6,8 +6,6 @@ initialType: TBumpType; | ||
export declare type TParsedMessageType = TBumpType | 'publish' | 'initial'; | ||
export declare type TRepoParsedMessage = { | ||
export declare type TParsedMessage = { | ||
type: TParsedMessageType; | ||
message: string; | ||
names: string[]; | ||
}; | ||
export declare type TWorkspacesParsedMessage = { | ||
names: string[]; | ||
} & TRepoParsedMessage; |
{ | ||
"name": "@auto/git", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"description": "", | ||
@@ -16,6 +16,6 @@ "keywords": [], | ||
"dependencies": { | ||
"@auto/utils": "^0.1.0", | ||
"@auto/utils": "^0.2.0", | ||
"execa": "^1.0.0", | ||
"prompts": "^1.1.0" | ||
"prompts": "^2.0.0" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
1
16579
25
428
+ Added@auto/utils@0.2.0(transitive)
+ Addedescape-string-regexp@2.0.0(transitive)
+ Addedprompts@2.4.2(transitive)
- Removed@auto/utils@0.1.0(transitive)
- Removedescape-string-regexp@1.0.5(transitive)
- Removedprompts@1.2.1(transitive)
Updated@auto/utils@^0.2.0
Updatedprompts@^2.0.0