@gunshi/plugin-dryrun 0.27.0-alpha.8 → 0.27.0-beta.0

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.
package/lib/index.d.ts CHANGED
@@ -2,9 +2,14 @@ import { PluginWithoutExtension } from "@gunshi/plugin";
2
2
 
3
3
  //#region src/index.d.ts
4
4
 
5
+ /**
6
+ * Dry run command context.
7
+ */
5
8
  interface DryRunCommandContext {}
6
9
  /**
7
- * dryrun option plugin for gunshi
10
+ * dryrun plugin
11
+ *
12
+ * @returns A defined plugin as dryrun
8
13
  */
9
14
  declare function dryrun(): PluginWithoutExtension<DryRunCommandContext>;
10
15
  //#endregion
package/lib/index.js CHANGED
@@ -2,7 +2,9 @@ import { plugin } from "@gunshi/plugin";
2
2
 
3
3
  //#region src/index.ts
4
4
  /**
5
- * dryrun option plugin for gunshi
5
+ * dryrun plugin
6
+ *
7
+ * @returns A defined plugin as dryrun
6
8
  */
7
9
  function dryrun() {
8
10
  return plugin({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gunshi/plugin-dryrun",
3
3
  "description": "dryrun option plugin for gunshi",
4
- "version": "0.27.0-alpha.8",
4
+ "version": "0.27.0-beta.0",
5
5
  "author": {
6
6
  "name": "kazuya kawaguchi",
7
7
  "email": "kawakazu80@gmail.com"
@@ -52,18 +52,18 @@
52
52
  }
53
53
  },
54
54
  "dependencies": {
55
- "@gunshi/plugin": "0.27.0-alpha.8"
55
+ "@gunshi/plugin": "0.27.0-beta.0"
56
56
  },
57
57
  "devDependencies": {
58
- "deno": "^2.4.0",
58
+ "deno": "^2.5.4",
59
59
  "jsr": "^0.13.5",
60
60
  "jsr-exports-lint": "^0.4.1",
61
- "publint": "^0.3.12",
62
- "tsdown": "^0.12.9"
61
+ "publint": "^0.3.14",
62
+ "tsdown": "^0.15.6"
63
63
  },
64
64
  "scripts": {
65
65
  "build": "tsdown",
66
66
  "lint:jsr": "jsr publish --dry-run --allow-dirty",
67
- "typecheck:deno": "deno check ./src"
67
+ "typecheck:deno": "deno check --import-map=../../importmap.json ./src"
68
68
  }
69
69
  }