@alexlit/config-prettier 4.0.2 → 4.2.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 +34 -0
- package/package.json +6 -6
- package/plugins/svelte.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
# [4.2.0](https://github.com/alex-lit/config-prettier/compare/v4.1.2...v4.2.0) (2021-11-22)
|
|
2
|
+
|
|
3
|
+
## [4.1.2](https://github.com/alex-lit/config-prettier/compare/v4.1.1...v4.1.2) (2021-11-17)
|
|
4
|
+
|
|
5
|
+
## [4.1.1](https://github.com/alex-lit/config-prettier/compare/v4.1.0...v4.1.1) (2021-11-16)
|
|
6
|
+
|
|
7
|
+
# 4.1.0 (2021-11-16)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- add plugins to package
|
|
12
|
+
([2b29a44](https://github.com/alex-lit/config-prettier/commit/2b29a445c14933d35c6bdcb8846847145722c0fc))
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- add pug plugin
|
|
17
|
+
([06a5b21](https://github.com/alex-lit/config-prettier/commit/06a5b21db67258e510a6d3c1060b31772b543d7d))
|
|
18
|
+
- add ruby plugin
|
|
19
|
+
([1aa15f9](https://github.com/alex-lit/config-prettier/commit/1aa15f977f05a80a83e8caf1324249bc4429bbdd))
|
|
20
|
+
- add tailwind plugin
|
|
21
|
+
([68c0111](https://github.com/alex-lit/config-prettier/commit/68c01110c82c4c994db1cbac9c7683a7cc9b0857))
|
|
22
|
+
- add xml plugin
|
|
23
|
+
([dbee926](https://github.com/alex-lit/config-prettier/commit/dbee926852ddb5e5c1900389975ff70c967f9107))
|
|
24
|
+
- **plugin:** add jsdoc
|
|
25
|
+
([49841ec](https://github.com/alex-lit/config-prettier/commit/49841ec2dc5289c6c569c1b00b974f39642ed1f5))
|
|
26
|
+
- **plugin:** add solidity
|
|
27
|
+
([c89793b](https://github.com/alex-lit/config-prettier/commit/c89793b87a953dee52ddfb9de9c54a34a2b35018))
|
|
28
|
+
- **plugin:** add sort-json
|
|
29
|
+
([bd36242](https://github.com/alex-lit/config-prettier/commit/bd3624272063b390647149cb2555ddec6a14c33c))
|
|
30
|
+
- **plugin:** add svelte
|
|
31
|
+
([c44a5cb](https://github.com/alex-lit/config-prettier/commit/c44a5cb0d7d86546e01acd1a548ed82f757e2d28))
|
|
32
|
+
- **plugin:** add twig
|
|
33
|
+
([661a8f1](https://github.com/alex-lit/config-prettier/commit/661a8f193aff04bc60f246d6affcdd748d0de932))
|
|
34
|
+
|
|
1
35
|
## [4.0.2](https://github.com/alex-lit/config-prettier/compare/v4.0.1...v4.0.2) (2021-11-08)
|
|
2
36
|
|
|
3
37
|
## [4.0.1](https://github.com/alex-lit/config-prettier/compare/v4.0.0...v4.0.1) (2021-10-31)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-prettier",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "prettier config",
|
|
6
6
|
"keywords": [
|
|
@@ -39,16 +39,16 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@prettier/plugin-php": "^0.17.6",
|
|
42
|
-
"@prettier/plugin-pug": "^1.17.
|
|
42
|
+
"@prettier/plugin-pug": "^1.17.3",
|
|
43
43
|
"@prettier/plugin-ruby": "^2.0.0",
|
|
44
44
|
"@prettier/plugin-xml": "^1.1.0",
|
|
45
45
|
"prettier": "^2.4.1",
|
|
46
46
|
"prettier-plugin-jsdoc": "^0.3.30",
|
|
47
|
-
"prettier-plugin-packagejson": "^2.2.
|
|
48
|
-
"prettier-plugin-sh": "^0.
|
|
49
|
-
"prettier-plugin-solidity": "^1.0.0-beta.
|
|
47
|
+
"prettier-plugin-packagejson": "^2.2.15",
|
|
48
|
+
"prettier-plugin-sh": "^0.8.0",
|
|
49
|
+
"prettier-plugin-solidity": "^1.0.0-beta.19",
|
|
50
50
|
"prettier-plugin-sort-json": "^0.0.2",
|
|
51
|
-
"prettier-plugin-svelte": "^2.
|
|
51
|
+
"prettier-plugin-svelte": "^2.5.0",
|
|
52
52
|
"prettier-plugin-twig-melody": "^0.4.6"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|