@so1ve/prettier-config 4.3.0 → 4.6.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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -3
  2. package/package.json +3 -5
package/dist/index.mjs CHANGED
@@ -1,5 +1,4 @@
1
1
  import { createRequire } from "node:module";
2
-
3
2
  //#region src/index.ts
4
3
  const require = createRequire(import.meta.url);
5
4
  const plugins = [
@@ -42,6 +41,5 @@ var src_default = {
42
41
  jsdocCommentLineStrategy: "multiline",
43
42
  tsdoc: true
44
43
  };
45
-
46
44
  //#endregion
47
- export { src_default as default };
45
+ export { src_default as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@so1ve/prettier-config",
3
- "version": "4.3.0",
3
+ "version": "4.6.0",
4
4
  "author": "Ray <i@mk1.io> (https://github.com/so1ve/)",
5
5
  "type": "module",
6
6
  "description": "Ray's prettier config.",
@@ -21,8 +21,6 @@
21
21
  ".": "./dist/index.mjs",
22
22
  "./package.json": "./package.json"
23
23
  },
24
- "main": "./dist/index.mjs",
25
- "module": "./dist/index.mjs",
26
24
  "types": "./dist/index.d.mts",
27
25
  "files": [
28
26
  "dist"
@@ -32,10 +30,10 @@
32
30
  },
33
31
  "dependencies": {
34
32
  "prettier-plugin-astro": "^0.14.1",
35
- "prettier-plugin-jsdoc": "^1.8.0",
33
+ "prettier-plugin-jsdoc": "^1.8.1",
36
34
  "prettier-plugin-toml": "^2.0.6"
37
35
  },
38
36
  "peerDependencies": {
39
- "prettier": "^3.7.4"
37
+ "prettier": "^3.8.1"
40
38
  }
41
39
  }