@will-stone/prettier-config 7.0.3 → 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.
@@ -0,0 +1,14 @@
1
+ {
2
+ "github": {
3
+ "release": true
4
+ },
5
+ "plugins": {
6
+ "@release-it/conventional-changelog": {
7
+ "preset": {
8
+ "name": "@commits-with-character/preset"
9
+ },
10
+ "infile": "CHANGELOG.md",
11
+ "header": "# Changelog"
12
+ }
13
+ }
14
+ }
package/CHANGELOG.md CHANGED
@@ -1,4 +1,21 @@
1
- # @will-stone/prettier-config
1
+ # Changelog
2
+
3
+ ## [8.0.0](https://github.com/will-stone/prettier-config/compare/v7.0.4...v8.0.0) (2024-04-30)
4
+
5
+ ### Major changes
6
+
7
+ * Prevent large diffs when adding keys that need quoting ([8497784](https://github.com/will-stone/prettier-config/commit/849778494cddafb5d6efff0555ba35b969647aee))
8
+
9
+ ### Patches
10
+
11
+ * Trailing commas set to all by default as of Prettier 3 ([5a3c452](https://github.com/will-stone/prettier-config/commit/5a3c452d5087a34b10587e4387027abf873e8796))
12
+
13
+ ## [7.0.4](https://github.com/will-stone/prettier-config/compare/v7.0.3...v7.0.4) (2024-04-30)
14
+
15
+ ### Patches
16
+
17
+ - Move to Commits With Character and do dummy release
18
+ ([5483678](https://github.com/will-stone/prettier-config/commit/5483678f455063819a15e96633393b2a5d564976))
2
19
 
3
20
  ## 7.0.3
4
21
 
package/index.json CHANGED
@@ -2,7 +2,5 @@
2
2
  "proseWrap": "always",
3
3
  "semi": false,
4
4
  "singleQuote": true,
5
- "trailingComma": "all",
6
- "quoteProps": "consistent",
7
5
  "plugins": ["prettier-plugin-packagejson"]
8
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@will-stone/prettier-config",
3
- "version": "7.0.3",
3
+ "version": "8.0.0",
4
4
  "description": "My personal Prettier config",
5
5
  "repository": {
6
6
  "url": "https://github.com/will-stone/prettier-config"
@@ -9,7 +9,8 @@
9
9
  "author": "Will Stone",
10
10
  "main": "index.json",
11
11
  "scripts": {
12
- "prepare": "husky install"
12
+ "prepare": "husky install",
13
+ "release": "release-it"
13
14
  },
14
15
  "lint-staged": {
15
16
  "*.{json,md}": [
@@ -21,9 +22,11 @@
21
22
  "prettier-plugin-packagejson": "^2.4.6"
22
23
  },
23
24
  "devDependencies": {
24
- "@changesets/cli": "^2.26.2",
25
+ "@commits-with-character/conventional-changelog-preset": "^0.0.3",
26
+ "@release-it/conventional-changelog": "^8.0.1",
25
27
  "husky": "^8.0.3",
26
- "lint-staged": "^15.1.0"
28
+ "lint-staged": "^15.1.0",
29
+ "release-it": "^17.2.1"
27
30
  },
28
31
  "peerDependencies": {
29
32
  "prettier": "3.x"
@@ -1,11 +0,0 @@
1
- # Changesets
2
-
3
- Hello and welcome! This folder has been automatically generated by
4
- `@changesets/cli`, a build tool that works with multi-package repos, or
5
- single-package repos to help you version and publish your code. You can find the
6
- full documentation for it
7
- [in our repository](https://github.com/changesets/changesets)
8
-
9
- We have a quick list of common questions to get you started engaging with this
10
- project in
11
- [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
@@ -1,11 +0,0 @@
1
- {
2
- "$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json",
3
- "changelog": "@changesets/cli/changelog",
4
- "commit": false,
5
- "fixed": [],
6
- "linked": [],
7
- "access": "public",
8
- "baseBranch": "main",
9
- "updateInternalDependencies": "patch",
10
- "ignore": []
11
- }