@coderwyd/eslint-config 4.7.1 → 4.7.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/dist/cli.js +1 -1
  2. package/package.json +6 -2
package/dist/cli.js CHANGED
@@ -10,7 +10,7 @@ import prompts from "prompts";
10
10
  import { execSync } from "node:child_process";
11
11
 
12
12
  //#region package.json
13
- var version = "4.7.1";
13
+ var version = "4.7.2";
14
14
  var devDependencies = {
15
15
  "@antfu/ni": "^26.1.0",
16
16
  "@eslint-react/eslint-plugin": "^2.2.2",
package/package.json CHANGED
@@ -1,11 +1,15 @@
1
1
  {
2
2
  "name": "@coderwyd/eslint-config",
3
3
  "type": "module",
4
- "version": "4.7.1",
4
+ "version": "4.7.2",
5
5
  "description": "Donny's ESLint config",
6
6
  "author": "Donny Wang <donny526@outlook.com> (https://github.com/coderwyd/)",
7
7
  "license": "MIT",
8
8
  "homepage": "https://github.com/coderwyd/eslint-config",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/coderwyd/eslint-config.git"
12
+ },
9
13
  "keywords": [
10
14
  "eslint",
11
15
  "eslint-config",
@@ -139,7 +143,7 @@
139
143
  "lint:fix": "eslint . --fix",
140
144
  "build:inspector": "pnpm build && pnpx @eslint/config-inspector build",
141
145
  "build:typegen": "jiti scripts/typegen.ts",
142
- "release": "bumpp && pnpm publish",
146
+ "release": "bumpp",
143
147
  "typecheck": "tsc --noEmit"
144
148
  }
145
149
  }