@becklyn/prettier 2.1.1-0 → 2.1.2
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/.turbo/turbo-test.log +5 -0
- package/CHANGELOG.md +38 -20
- package/LICENSE +17 -23
- package/{index.json → index.js} +1 -1
- package/package.json +9 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,32 +1,50 @@
|
|
|
1
|
-
|
|
2
|
-
=====
|
|
1
|
+
# @becklyn/prettier
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
* (feature) Add sorting css declarations.
|
|
6
|
-
* (internal) Add `prettier` as dependency.
|
|
7
|
-
* (internal) Add `prettier-plugin-css-order` as dependency.
|
|
8
|
-
* (internal) Write prettier config as mjs.
|
|
9
|
-
* (internal) Add format command.
|
|
3
|
+
## 2.1.2
|
|
10
4
|
|
|
11
|
-
|
|
12
|
-
=====
|
|
5
|
+
### Patch Changes
|
|
13
6
|
|
|
14
|
-
|
|
7
|
+
- cc87667: update dependencies and packageManager
|
|
15
8
|
|
|
9
|
+
## 2.1.1
|
|
16
10
|
|
|
17
|
-
|
|
18
|
-
=====
|
|
11
|
+
### Patch Changes
|
|
19
12
|
|
|
20
|
-
|
|
13
|
+
- 0dc9360: (bug) Allow use in VSCode
|
|
14
|
+
- 0dc9360: (improvement) Improve documentation
|
|
15
|
+
- 0dc9360: (internal) Write prettier config as json
|
|
21
16
|
|
|
17
|
+
## 2.1.0
|
|
22
18
|
|
|
23
|
-
|
|
24
|
-
=====
|
|
19
|
+
### Minor Changes
|
|
25
20
|
|
|
26
|
-
|
|
21
|
+
- edb9242: (feature) Add sorting of imports via this project.
|
|
22
|
+
- edb9242: (feature) Add sorting css declarations.
|
|
23
|
+
- edb9242: (internal) Add `prettier` as dependency.
|
|
24
|
+
- edb9242: (internal) Add `prettier-plugin-css-order` as dependency.
|
|
25
|
+
- edb9242: (internal) Write prettier config as mjs.
|
|
26
|
+
- edb9242: (internal) Add format command.
|
|
27
27
|
|
|
28
|
+
## 2.0.0
|
|
28
29
|
|
|
29
|
-
|
|
30
|
-
=====
|
|
30
|
+
### Major Changes
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
- 8354d01: (bc) Add sort imports.
|
|
33
|
+
|
|
34
|
+
## 1.0.2
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- 9006cf2: (bug) Fix `package.json`.
|
|
39
|
+
|
|
40
|
+
## 1.0.1
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- 93fe939: (bug) Correctly add prettier as a peer dependency.
|
|
45
|
+
|
|
46
|
+
## 1.0.0
|
|
47
|
+
|
|
48
|
+
### Major Changes
|
|
49
|
+
|
|
50
|
+
- 1f09f0c: (feature) Add Becklyn code style for prettier.
|
package/LICENSE
CHANGED
|
@@ -1,27 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
All rights reserved.
|
|
1
|
+
MIT License
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
modification, are permitted provided that the following conditions are met:
|
|
3
|
+
Copyright (c) 2024 Becklyn Studios
|
|
6
4
|
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
9
11
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
and/or other materials provided with the distribution.
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
22
|
-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
23
|
-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
24
|
-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
25
|
-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
26
|
-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
27
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/{index.json → index.js}
RENAMED
package/package.json
CHANGED
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@becklyn/prettier",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
|
+
"license": "MIT",
|
|
4
5
|
"description": "The commonly used prettier configuration for projects at Becklyn",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
"url": "https://github.com/Becklyn/prettier.git"
|
|
10
|
-
},
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"**/*"
|
|
9
|
+
],
|
|
11
10
|
"scripts": {
|
|
12
11
|
"test": "echo 'no tests defined' && exit 0",
|
|
13
12
|
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,json,scss,css}\""
|
|
14
13
|
},
|
|
15
|
-
"main": "index.json",
|
|
16
|
-
"publishConfig": {
|
|
17
|
-
"access": "public"
|
|
18
|
-
},
|
|
19
14
|
"dependencies": {
|
|
20
|
-
"@trivago/prettier-plugin-sort-imports": "^
|
|
21
|
-
"postcss": "^8.
|
|
22
|
-
"prettier": "^3.
|
|
15
|
+
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
|
|
16
|
+
"postcss": "^8.5.3",
|
|
17
|
+
"prettier": "^3.5.3",
|
|
23
18
|
"prettier-plugin-css-order": "^2.1.2"
|
|
24
19
|
}
|
|
25
20
|
}
|