@storm-software/linting-tools 1.19.0 → 1.20.1

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 CHANGED
@@ -1,3 +1,17 @@
1
+ # [1.20.0](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.19.0...linting-tools-v1.20.0) (2023-12-22)
2
+
3
+
4
+ ### Features
5
+
6
+ * **workspace-tools:** Added `design-tokens` generator ([af49878](https://github.com/storm-software/storm-ops/commit/af498784bc6446974c141ebb6206749076e2a6b3))
7
+
8
+ # [1.19.0](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.18.2...linting-tools-v1.19.0) (2023-12-21)
9
+
10
+
11
+ ### Features
12
+
13
+ * **config-tools:** Added the `findWorkspaceRootSync` and `findWorkspaceRootSafeSync` functions ([59e0ee4](https://github.com/storm-software/storm-ops/commit/59e0ee4779a15752fb035d235b929bb3e8ecc974))
14
+
1
15
  ## [1.18.2](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.18.1...linting-tools-v1.18.2) (2023-12-21)
2
16
 
3
17
 
@@ -23,6 +23,7 @@ valibot
23
23
  hasura
24
24
  strapi
25
25
  tamagui
26
+ lockb
26
27
  allcontributors
27
28
  probot
28
29
  smee
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/linting-tools",
3
- "version": "1.19.0",
3
+ "version": "1.20.1",
4
4
  "private": false,
5
5
  "description": "⚡ A package containing various linting tools used to validate syntax, enforce design standards, and format code in a Storm workspace.",
6
6
  "keywords": [
@@ -93,6 +93,7 @@
93
93
  "dpdm": "3.14.0",
94
94
  "eslint": "8.53.0",
95
95
  "p-limit": "4.0.0",
96
+ "prettier-plugin-tailwindcss": "^0.5.9",
96
97
  "rehype-parse": "9.0.0",
97
98
  "rehype-retext": "4.0.0",
98
99
  "remark-frontmatter": "5.0.0",
@@ -1,5 +1,9 @@
1
1
  {
2
- "plugins": ["prettier-plugin-packagejson", "prettier-plugin-prisma"],
2
+ "plugins": [
3
+ "prettier-plugin-packagejson",
4
+ "prettier-plugin-prisma",
5
+ "prettier-plugin-tailwindcss"
6
+ ],
3
7
  "trailingComma": "none",
4
8
  "tabWidth": 2,
5
9
  "semi": true,