@webhippie/semantic-release-rubygem 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/verify.js +2 -1
  2. package/package.json +1 -1
package/lib/verify.js CHANGED
@@ -2,10 +2,11 @@ import path from "node:path";
2
2
  import { readFile, writeFile } from "node:fs/promises";
3
3
 
4
4
  import { execa } from "execa";
5
- import { SemanticReleaseError } from "@semantic-release/error";
6
5
  import { glob } from "glob";
7
6
  import { versionRegex } from "./common.js";
8
7
 
8
+ import SemanticReleaseError from "@semantic-release/error";
9
+
9
10
  const loadGemspec = async ({ cwd }) => {
10
11
  const gemSpecs = await glob("*.gemspec", { cwd });
11
12
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@webhippie/semantic-release-rubygem",
3
3
  "description": "semantic-release plugin to publish a gem to Rubygems",
4
- "version": "1.0.1",
4
+ "version": "1.0.2",
5
5
  "type": "module",
6
6
  "author": "Thomas Boerger (https://twitter.com/@tboerger)",
7
7
  "ava": {