@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.
@@ -0,0 +1,5 @@
1
+
2
+ > @becklyn/prettier@2.1.2 test
3
+ > echo 'no tests defined' && exit 0
4
+
5
+ no tests defined
package/CHANGELOG.md CHANGED
@@ -1,32 +1,50 @@
1
- 2.1.0
2
- =====
1
+ # @becklyn/prettier
3
2
 
4
- * (feature) Add sorting of imports via this project.
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
- 2.0.0
12
- =====
5
+ ### Patch Changes
13
6
 
14
- * (bc) Add sort imports.
7
+ - cc87667: update dependencies and packageManager
15
8
 
9
+ ## 2.1.1
16
10
 
17
- 1.0.2
18
- =====
11
+ ### Patch Changes
19
12
 
20
- * (bug) Fix `package.json`.
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
- 1.0.1
24
- =====
19
+ ### Minor Changes
25
20
 
26
- * (bug) Correctly add prettier as a peer dependency.
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
- 1.0.0
30
- =====
30
+ ### Major Changes
31
31
 
32
- * (feature) Add Becklyn code style for prettier.
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
- Copyright (c) 2022, Becklyn GmbH
2
- All rights reserved.
1
+ MIT License
3
2
 
4
- Redistribution and use in source and binary forms, with or without
5
- modification, are permitted provided that the following conditions are met:
3
+ Copyright (c) 2024 Becklyn Studios
6
4
 
7
- * Redistributions of source code must retain the above copyright notice, this
8
- list of conditions and the following disclaimer.
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
- * Redistributions in binary form must reproduce the above copyright notice,
11
- this list of conditions and the following disclaimer in the documentation
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
- * Neither the name of the Becklyn GmbH nor the names of its
15
- contributors may be used to endorse or promote products derived from
16
- this software without specific prior written permission.
17
-
18
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
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.
@@ -1,4 +1,4 @@
1
- {
1
+ module.exports = {
2
2
  "$schema": "http://json.schemastore.org/prettierrc",
3
3
  "trailingComma": "es5",
4
4
  "tabWidth": 4,
package/package.json CHANGED
@@ -1,25 +1,20 @@
1
1
  {
2
2
  "name": "@becklyn/prettier",
3
- "version": "2.1.1-0",
3
+ "version": "2.1.2",
4
+ "license": "MIT",
4
5
  "description": "The commonly used prettier configuration for projects at Becklyn",
5
- "license": "BSD-3-Clause",
6
- "homepage": "https://github.com/Becklyn/prettier",
7
- "repository": {
8
- "type": "git",
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": "^4.3.0",
21
- "postcss": "^8.4.38",
22
- "prettier": "^3.2.5",
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
  }