@abinnovision/prettier-config 2.1.3 → 2.1.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.1.5](https://github.com/abinnovision/js-commons/compare/prettier-config-v2.1.4...prettier-config-v2.1.5) (2025-11-08)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * trigger synthetic patch release for all packages ([0a42ee3](https://github.com/abinnovision/js-commons/commit/0a42ee36601f88ff232a41a8682266543849b3c6))
9
+
10
+ ## [2.1.4](https://github.com/abinnovision/js-commons/compare/prettier-config-v2.1.3...prettier-config-v2.1.4) (2025-11-08)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * migrate eslint configs to use defineConfig ([#541](https://github.com/abinnovision/js-commons/issues/541)) ([eb24dca](https://github.com/abinnovision/js-commons/commit/eb24dca423b594711b727da84f4c4026f781c9e4))
16
+
3
17
  ## [2.1.3](https://github.com/abinnovision/js-commons/compare/prettier-config-v2.1.2...prettier-config-v2.1.3) (2024-10-16)
4
18
 
5
19
 
@@ -28,7 +28,7 @@ var fs = __toESM(require("fs/promises"), 1);
28
28
  var path = __toESM(require("path"), 1);
29
29
  var process = __toESM(require("process"), 1);
30
30
  var DISABLE_ENV_VAR = "DISABLE_SYNC_EDITORCONFIG";
31
- (async function() {
31
+ void async function() {
32
32
  if ([true, "true"].includes(process.env[DISABLE_ENV_VAR] ?? false)) {
33
33
  return;
34
34
  }
@@ -36,4 +36,4 @@ var DISABLE_ENV_VAR = "DISABLE_SYNC_EDITORCONFIG";
36
36
  path.resolve(__dirname, "../../assets/.editorconfig"),
37
37
  path.resolve(process.cwd(), ".editorconfig")
38
38
  );
39
- })();
39
+ }();
package/package.json CHANGED
@@ -1,15 +1,20 @@
1
1
  {
2
2
  "name": "@abinnovision/prettier-config",
3
- "version": "2.1.3",
3
+ "version": "2.1.5",
4
+ "publishConfig": {
5
+ "npm": true,
6
+ "ghpr": true,
7
+ "npmAccess": "public"
8
+ },
4
9
  "type": "module",
5
10
  "repository": {
6
11
  "url": "https://github.com/abinnovision/js-commons"
7
12
  },
8
13
  "license": "Apache-2.0",
9
14
  "author": {
10
- "name": "AB INNOVISION GmbH",
11
- "email": "info@abinnovision.com",
12
- "url": "https://abinnovision.com/"
15
+ "name": "abi group GmbH",
16
+ "email": "info@abigroup.io",
17
+ "url": "https://abigroup.io/"
13
18
  },
14
19
  "main": "./dist/index.js",
15
20
  "types": "./dist/index.d.ts",
@@ -38,13 +43,12 @@
38
43
  },
39
44
  "prettier": "./dist/index.js",
40
45
  "devDependencies": {
41
- "@types/node": "^22.7.5",
46
+ "@types/node": "^22.12.0",
42
47
  "@types/prettier": "^3.0.0",
43
- "eslint": "^9.12.0",
44
- "globals": "^15.11.0",
45
- "prettier": "^3.3.3",
46
- "tsup": "^8.3.0",
47
- "typescript": "^5.6.3"
48
+ "eslint": "^9.39.1",
49
+ "prettier": "^3.4.2",
50
+ "tsup": "^8.3.6",
51
+ "typescript": "^5.9.3"
48
52
  },
49
53
  "peerDependencies": {
50
54
  "prettier": "^2.4.0 || ^3.0.0"