@taiga-ui/prettier-config 0.7.2 → 0.8.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 +21 -0
  2. package/index.js +6 -0
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,27 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.8.0](https://github.com/taiga-family/linters/compare/@taiga-ui/prettier-config@0.7.3...@taiga-ui/prettier-config@0.8.0) (2024-02-04)
7
+
8
+ ### Features
9
+
10
+ - **prettier-config:** add `jsonc`
11
+ ([61b0e01](https://github.com/taiga-family/linters/commit/61b0e010da584e952350db60bd1abaf1e82d5b3e))
12
+
13
+ # Change Log
14
+
15
+ All notable changes to this project will be documented in this file. See
16
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
17
+
18
+ ## [0.7.3](https://github.com/taiga-family/linters/compare/@taiga-ui/prettier-config@0.7.2...@taiga-ui/prettier-config@0.7.3) (2024-02-03)
19
+
20
+ **Note:** Version bump only for package @taiga-ui/prettier-config
21
+
22
+ # Change Log
23
+
24
+ All notable changes to this project will be documented in this file. See
25
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
26
+
6
27
  ## [0.7.2](https://github.com/taiga-family/linters/compare/@taiga-ui/prettier-config@0.7.1...@taiga-ui/prettier-config@0.7.2) (2024-02-03)
7
28
 
8
29
  **Note:** Version bump only for package @taiga-ui/prettier-config
package/index.js CHANGED
@@ -94,5 +94,11 @@ module.exports = {
94
94
  files: '*.svg',
95
95
  options: require(require('path').resolve(__dirname, 'options', 'svg.js')),
96
96
  },
97
+ {
98
+ files: ['tsconfig*.json'],
99
+ options: {
100
+ parser: 'jsonc',
101
+ },
102
+ },
97
103
  ],
98
104
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taiga-ui/prettier-config",
3
- "version": "0.7.2",
3
+ "version": "0.8.0",
4
4
  "description": "Taiga-ui prettier config",
5
5
  "keywords": [
6
6
  "prettier",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "peerDependencies": {
22
22
  "@prettier/plugin-xml": "3.2.2",
23
- "prettier": "*",
23
+ "prettier": "3.2.4",
24
24
  "prettier-package-json": "2.8.0",
25
25
  "prettier-plugin-organize-attributes": "1.0.0",
26
26
  "sort-package-json": "2.7.0"