@storm-software/prettier 0.2.2 → 0.6.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/.prettierignore CHANGED
@@ -11,6 +11,8 @@ pnpm-lock.yaml
11
11
  yarn.lock.yaml
12
12
  bun.lockb
13
13
 
14
+ **/.nx/workspace-data/**
15
+ **/.nx/cache/**
14
16
  **/.git/**
15
17
  **/.docusaurus/**
16
18
  **/dist/**
@@ -27,3 +29,4 @@ bun.lockb
27
29
  **/LICENSE
28
30
  **/LICENSE.md
29
31
  **/LICENSE.txt
32
+ **/src/generators/**/files/**/*
package/CHANGELOG.md CHANGED
@@ -1,3 +1,31 @@
1
+ ## 0.6.0 (2024-07-14)
2
+
3
+
4
+ ### 🚀 Features
5
+
6
+ - **markdownlint:** Added markdownlint v1 json configuration ([9fbd4fd0](https://github.com/storm-software/storm-ops/commit/9fbd4fd0))
7
+
8
+ ## 0.5.0 (2024-06-22)
9
+
10
+
11
+ ### 🚀 Features
12
+
13
+ - **workspace-tools:** Added `lint` and `format` tasks and improved cache input management ([f2ade202](https://github.com/storm-software/storm-ops/commit/f2ade202))
14
+
15
+ ## 0.4.0 (2024-06-21)
16
+
17
+
18
+ ### 🚀 Features
19
+
20
+ - **eslint-plugin:** Resolve issues with eslint module types ([ca513974](https://github.com/storm-software/storm-ops/commit/ca513974))
21
+
22
+ ## 0.3.0 (2024-06-17)
23
+
24
+
25
+ ### 🚀 Features
26
+
27
+ - **git-tools:** Add proper export values to package and resolve type issues ([46f45709](https://github.com/storm-software/storm-ops/commit/46f45709))
28
+
1
29
  ## 0.2.2 (2024-06-17)
2
30
 
3
31
 
package/config.json CHANGED
@@ -32,6 +32,12 @@
32
32
  "parser": "html"
33
33
  }
34
34
  },
35
+ {
36
+ "files": "**/*.aci",
37
+ "options": {
38
+ "parser": "prisma-parse"
39
+ }
40
+ },
35
41
  {
36
42
  "files": "**/*.acid",
37
43
  "options": {
@@ -49,8 +55,7 @@
49
55
  "prettier-plugin-sh",
50
56
  "prettier-plugin-pkg",
51
57
  "@ianvs/prettier-plugin-sort-imports",
52
- "prettier-plugin-prisma",
53
- "prettier-plugin-tailwindcss"
58
+ "prettier-plugin-prisma"
54
59
  ],
55
60
  "importOrder": [
56
61
  "^react(-dom)?$",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/prettier",
3
- "version": "0.2.2",
3
+ "version": "0.6.0",
4
4
  "type": "commonjs",
5
5
  "description": "⚡ A package containing the base Prettier configuration used by Storm Software across many projects.",
6
6
  "repository": {
@@ -41,8 +41,7 @@
41
41
  "@ianvs/prettier-plugin-sort-imports": "4.2.1",
42
42
  "prettier-plugin-pkg": "0.18.1",
43
43
  "prettier-plugin-prisma": "5.0.0",
44
- "prettier-plugin-sh": "0.14.0",
45
- "prettier-plugin-tailwindcss": "0.6.4"
44
+ "prettier-plugin-sh": "0.14.0"
46
45
  },
47
46
  "devDependencies": {
48
47
  "@types/prettier": "3.0.0"