@foray1010/prettier-config 5.0.1 → 7.0.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 (3) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/index.js +1 -1
  3. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,34 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [7.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/prettier-config@6.0.1...@foray1010/prettier-config@7.0.0) (2022-06-13)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ - drop support for typescript >=5
11
+ - drop node 12 and 17
12
+
13
+ ### Miscellaneous Chores
14
+
15
+ - drop node 12 and 17 ([c43351e](https://github.com/foray1010/common-presets/commit/c43351e0da92209fc3100d9cb1bc129af320fdac))
16
+ - remove peerDependencies versions that are not sure if supported ([2175adb](https://github.com/foray1010/common-presets/commit/2175adb62efe7d1762f6f66ce9bb0e7adb5f82e5))
17
+
18
+ ### [6.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/prettier-config@6.0.0...@foray1010/prettier-config@6.0.1) (2021-11-10)
19
+
20
+ ### Bug Fixes
21
+
22
+ - use bracketSameLine instead of deprecated jsxBracketSameLine ([16eaf7a](https://github.com/foray1010/common-presets/commit/16eaf7abe0fe4c7bdf09531c13fa76a15aa3c6b3))
23
+
24
+ ## [6.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/prettier-config@5.0.1...@foray1010/prettier-config@6.0.0) (2021-11-10)
25
+
26
+ ### ⚠ BREAKING CHANGES
27
+
28
+ - only support node ^12.22.0 || ^14.17.0 || >=16.13.0
29
+
30
+ ### Miscellaneous Chores
31
+
32
+ - bump node version requirement ([6906953](https://github.com/foray1010/common-presets/commit/6906953ac0b781376d5c8a17d27faef6a457278a))
33
+
6
34
  ### [5.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/prettier-config@5.0.0...@foray1010/prettier-config@5.0.1) (2021-08-25)
7
35
 
8
36
  **Note:** Version bump only for package @foray1010/prettier-config
package/index.js CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  module.exports = {
4
4
  arrowParens: 'always',
5
+ bracketSameLine: false,
5
6
  bracketSpacing: true,
6
7
  endOfLine: 'lf',
7
- jsxBracketSameLine: false,
8
8
  jsxSingleQuote: true,
9
9
  printWidth: 80,
10
10
  quoteProps: 'as-needed',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@foray1010/prettier-config",
4
- "version": "5.0.1",
4
+ "version": "7.0.0",
5
5
  "homepage": "https://github.com/foray1010/common-presets/tree/master/packages/prettier-config#readme",
6
6
  "bugs": "https://github.com/foray1010/common-presets/issues",
7
7
  "repository": {
@@ -20,13 +20,13 @@
20
20
  "prettier-plugin-packagejson": "^2.2.5"
21
21
  },
22
22
  "peerDependencies": {
23
- "prettier": ">=2 <3"
23
+ "prettier": "^2.4.0"
24
24
  },
25
25
  "engines": {
26
- "node": ">=12.13"
26
+ "node": "^14.17.0 || >=16.13.0 || >=18.0.0"
27
27
  },
28
28
  "publishConfig": {
29
29
  "access": "public"
30
30
  },
31
- "gitHead": "71a90d13cb71225ba3530a5f8bb5c75a780f4f03"
31
+ "gitHead": "6b2dbe64ac8e4677dfb6b72f70e185bcd607f17b"
32
32
  }