Skip to content

Commit

Permalink
chore(release): forgot releaseAs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mara-Li committed Aug 18, 2023
1 parent a02e38c commit 190abe6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion commit-and-tag-version.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/* eslint-disable @typescript-eslint/no-var-requires */
const { Command, Option } = require("commander");
const { readFileSync, writeFileSync } = require("fs");
const commitAndTagVersion = require("commit-and-tag-version");
const dedent = require("dedent");
const c = require("ansi-colors");
Expand Down Expand Up @@ -97,6 +96,10 @@ if (opt.beta) {
filename: "package.json",
type: "json",
},
{
filename: "package-lock.json",
type: "json",
},
{
filename: "manifest.json",
type: "json",
Expand All @@ -109,6 +112,7 @@ if (opt.beta) {
bumpFiles: bumpFiles,
dryRun: opt.dryRun,
tagPrefix: "",
releaseAs: opt.releaseAs,
})
.then(() => {
console.log("Done");
Expand Down

0 comments on commit 190abe6

Please sign in to comment.