@empathyco/x-components 6.0.0-alpha.97 → 6.0.0-alpha.99
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 +16 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 6.0.0-alpha.99 (2025-06-20)
|
|
7
|
+
|
|
8
|
+
* ci: add typecheck script to package.json (#1806) ([912d163](https://github.com/empathyco/x/commit/912d163)), closes [#1806](https://github.com/empathyco/x/issues/1806)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## 6.0.0-alpha.98 (2025-06-18)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @empathyco/x-components
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## 6.0.0-alpha.97 (2025-06-17)
|
|
7
23
|
|
|
8
24
|
* fix(docs): fix related prompts documentation (#1801) ([7f9ee87](https://github.com/empathyco/x/commit/7f9ee87)), closes [#1801](https://github.com/empathyco/x/issues/1801)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empathyco/x-components",
|
|
3
|
-
"version": "6.0.0-alpha.
|
|
3
|
+
"version": "6.0.0-alpha.99",
|
|
4
4
|
"description": "Empathy X Components",
|
|
5
5
|
"author": "Empathy Systems Corporation S.L.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
"gen:docs": "rimraf ./docs && pnpm run gen:typescript-docs && pnpm run gen:component-docs",
|
|
52
52
|
"gen:typescript-docs": "api-documenter markdown --input-folder dist/report --output-folder docs/API-reference/api",
|
|
53
53
|
"gen:component-docs": "vue-docgen",
|
|
54
|
+
"typecheck": "tsc --noEmit",
|
|
54
55
|
"lint": "eslint --fix",
|
|
55
56
|
"lint:check": "eslint",
|
|
56
57
|
"lint:inspect": "eslint --inspect-config .",
|
|
@@ -96,7 +97,7 @@
|
|
|
96
97
|
"@badeball/cypress-cucumber-preprocessor": "22.0.1",
|
|
97
98
|
"@bahmutov/cypress-esbuild-preprocessor": "2.2.0",
|
|
98
99
|
"@cucumber/messages": "27.2.0",
|
|
99
|
-
"@empathyco/x-tailwindcss": "^2.0.0-alpha.
|
|
100
|
+
"@empathyco/x-tailwindcss": "^2.0.0-alpha.11",
|
|
100
101
|
"@microsoft/api-documenter": "7.23.0",
|
|
101
102
|
"@microsoft/api-extractor": "7.39.0",
|
|
102
103
|
"@testing-library/jest-dom": "5.17.0",
|
|
@@ -142,5 +143,5 @@
|
|
|
142
143
|
"access": "public",
|
|
143
144
|
"directory": "dist"
|
|
144
145
|
},
|
|
145
|
-
"gitHead": "
|
|
146
|
+
"gitHead": "49e498d1c49956447fb7f6e629968151ba8d67b2"
|
|
146
147
|
}
|