Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Commit

Permalink
style: update commit messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ayuhito committed Sep 22, 2021
1 parent 57d7394 commit 1c86d56
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mass-publish",
"version": "1.0.10",
"version": "1.1.0",
"description": "A barebones NPM bulk publisher.",
"bin": {
"mass-publish": "./bin/run"
Expand Down
2 changes: 1 addition & 1 deletion src/publish/commit-message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const newCommitMessage = (
};

const commitHashUpdateMessage = (config: Config): string => {
let message = "chore: update packages";
let message = "chore(build): update packages";
const { updateMessage } = config;
if (updateMessage) {
message = updateMessage;
Expand Down
2 changes: 1 addition & 1 deletion src/publish/git-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const gitConfig = async (config: Config): Promise<void> => {
};

const gitCommit = async (message: string): Promise<void> => {
await execa("git", ["commit", "-m", `"${message}"`]);
await execa("git", ["commit", "-m", message]);
};

const gitRemoteUrl = async (): Promise<string> => {
Expand Down

0 comments on commit 1c86d56

Please sign in to comment.