Skip to content

Commit

Permalink
fix: correctly import semantic errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Jun 4, 2024
1 parent 1383d08 commit e886a1e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ import path from "node:path";
import { readFile, writeFile } from "node:fs/promises";

import { execa } from "execa";
import { SemanticReleaseError } from "@semantic-release/error";
import { glob } from "glob";
import { versionRegex } from "./common.js";

import SemanticReleaseError from "@semantic-release/error";

const loadGemspec = async ({ cwd }) => {
const gemSpecs = await glob("*.gemspec", { cwd });

Expand Down

0 comments on commit e886a1e

Please sign in to comment.