x-fidelity 3.1.1 → 3.2.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/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # [3.2.0](https://github.com/zotoio/x-fidelity/compare/v3.1.1...v3.2.0) (2025-02-20)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **docs:** release ([633d0ff](https://github.com/zotoio/x-fidelity/commit/633d0ff966aabc4a433929cbd1cb4e66843b8450))
7
+
8
+
9
+ ### Features
10
+
11
+ * set dark mode as default theme with color mode preferences ([ed6d6ec](https://github.com/zotoio/x-fidelity/commit/ed6d6ece77acf56acf36aaafe4ee0eeb2e043107))
12
+
1
13
  ## [3.1.1](https://github.com/zotoio/x-fidelity/compare/v3.1.0...v3.1.1) (2025-02-20)
2
14
 
3
15
 
package/README.md CHANGED
@@ -16,6 +16,8 @@ x-fidelity is an advanced CLI tool and paired config server designed to perform
16
16
  -------------------------------------
17
17
  ```
18
18
 
19
+ **NEW beta genai docs: https://zotoio.github.io/x-fidelity/**
20
+
19
21
  ## Quick Start
20
22
 
21
23
  1. Install x-fidelity:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "x-fidelity",
3
- "version": "3.1.1",
3
+ "version": "3.2.0",
4
4
  "description": "cli for opinionated framework adherence checks",
5
5
  "main": "dist/index",
6
6
  "types": "dist/index.d.ts",
@@ -35,6 +35,11 @@ module.exports = {
35
35
  plugins: [],
36
36
 
37
37
  themeConfig: {
38
+ colorMode: {
39
+ defaultMode: 'dark',
40
+ disableSwitch: false,
41
+ respectPrefersColorScheme: true,
42
+ },
38
43
  navbar: {
39
44
  title: 'x-fidelity',
40
45
  logo: {
@@ -64,7 +69,7 @@ module.exports = {
64
69
  footer: {
65
70
  style: 'dark',
66
71
 
67
- copyright: `Copyright © ${new Date().getFullYear()} x-fidelity. Built with Docusaurus.`,
72
+ copyright: `Copyright © ${new Date().getFullYear()} x-fidelity. Built with Docusaurus and https://aider.chat`,
68
73
  },
69
74
  prism: {
70
75
  theme: require('prism-react-renderer').themes.github,