@foray1010/prettier-config 7.0.4 → 8.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.
- package/CHANGELOG.md +14 -0
- package/{index.js → index.cjs} +0 -0
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
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
|
+
## [8.0.0](https://github.com/foray1010/common-presets/compare/@foray1010/prettier-config@7.0.5...@foray1010/prettier-config@8.0.0) (2022-11-07)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
- drop nodejs 14.17 and 18.11
|
|
11
|
+
|
|
12
|
+
### Miscellaneous Chores
|
|
13
|
+
|
|
14
|
+
- drop nodejs 14.17 and 18.11 ([8e5c967](https://github.com/foray1010/common-presets/commit/8e5c9677b89d38c88de465f069bb5de683a8a40b))
|
|
15
|
+
|
|
16
|
+
## [7.0.5](https://github.com/foray1010/common-presets/compare/@foray1010/prettier-config@7.0.4...@foray1010/prettier-config@7.0.5) (2022-09-28)
|
|
17
|
+
|
|
18
|
+
**Note:** Version bump only for package @foray1010/prettier-config
|
|
19
|
+
|
|
6
20
|
## [7.0.4](https://github.com/foray1010/common-presets/compare/@foray1010/prettier-config@7.0.3...@foray1010/prettier-config@7.0.4) (2022-09-22)
|
|
7
21
|
|
|
8
22
|
**Note:** Version bump only for package @foray1010/prettier-config
|
package/{index.js → index.cjs}
RENAMED
|
File without changes
|
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": "
|
|
4
|
+
"version": "8.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": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"directory": "packages/prettier-config"
|
|
11
11
|
},
|
|
12
12
|
"license": "MIT",
|
|
13
|
-
"exports": "./index.
|
|
13
|
+
"exports": "./index.cjs",
|
|
14
14
|
"files": [
|
|
15
15
|
"**/*.{cjs,js,json,mjs}",
|
|
16
16
|
"*.md",
|
|
@@ -23,17 +23,16 @@
|
|
|
23
23
|
"prettier-plugin-packagejson": "^2.2.5"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@types/prettier": "2.7.
|
|
27
|
-
"typescript": "4.8.3"
|
|
26
|
+
"@types/prettier": "2.7.1"
|
|
28
27
|
},
|
|
29
28
|
"peerDependencies": {
|
|
30
29
|
"prettier": "^2.4.0"
|
|
31
30
|
},
|
|
32
31
|
"engines": {
|
|
33
|
-
"node": "^14.
|
|
32
|
+
"node": "^14.18.0 || ^16.13.0 || >=18.12.0"
|
|
34
33
|
},
|
|
35
34
|
"publishConfig": {
|
|
36
35
|
"access": "public"
|
|
37
36
|
},
|
|
38
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "4acba77dace91746ac98872f4b8f62b410de82f5"
|
|
39
38
|
}
|