@cogito.ai/cli 0.4.0 → 0.4.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/dist/index.js CHANGED
@@ -868,7 +868,7 @@ var package_default;
868
868
  var init_package = __esm(() => {
869
869
  package_default = {
870
870
  name: "@cogito.ai/cli",
871
- version: "0.4.0",
871
+ version: "0.4.1",
872
872
  type: "module",
873
873
  description: "AgentDock CLI – scaffold projects for humans and AI agents",
874
874
  publishConfig: {
@@ -29,6 +29,10 @@
29
29
  "dashboardTitle": "Dashboard",
30
30
  "dashboardWelcome": "Welcome, {email}",
31
31
  "errorInvalidCredentials": "Invalid email or password.",
32
- "errorGeneric": "Something went wrong. Please try again."
32
+ "errorGeneric": "Something went wrong. Please try again.",
33
+ "termsText": "By clicking continue, you agree to our",
34
+ "termsLink": "Terms of Service",
35
+ "andText": "and",
36
+ "privacyLink": "Privacy Policy"
33
37
  }
34
38
  }
@@ -29,6 +29,10 @@
29
29
  "dashboardTitle": "控制台",
30
30
  "dashboardWelcome": "欢迎,{email}",
31
31
  "errorInvalidCredentials": "邮箱或密码错误。",
32
- "errorGeneric": "出现错误,请稍后重试。"
32
+ "errorGeneric": "出现错误,请稍后重试。",
33
+ "termsText": "点击继续即表示您同意我们的",
34
+ "termsLink": "服务条款",
35
+ "andText": "和",
36
+ "privacyLink": "隐私政策"
33
37
  }
34
38
  }
@@ -34,6 +34,7 @@
34
34
  "@radix-ui/react-toggle-group": "^1.1.11",
35
35
  "@supabase/ssr": "^0.10.3",
36
36
  "@tabler/icons-react": "^3.44.0",
37
+ "@tailwindcss/postcss": "^4.3.0",
37
38
  "@tanstack/react-table": "^8.21.3",
38
39
  "class-variance-authority": "^0.7.1",
39
40
  "clsx": "^2.1.1",
@@ -0,0 +1,8 @@
1
+ /** @type {import('postcss-load-config').Config} */
2
+ const config = {
3
+ plugins: {
4
+ '@tailwindcss/postcss': {},
5
+ },
6
+ }
7
+
8
+ export default config
@@ -150,6 +150,9 @@ importers:
150
150
  '@tabler/icons-react':
151
151
  specifier: ^3.44.0
152
152
  version: 3.44.0(react@19.2.7)
153
+ '@tailwindcss/postcss':
154
+ specifier: ^4.3.0
155
+ version: 4.3.0
153
156
  '@tanstack/react-table':
154
157
  specifier: ^8.21.3
155
158
  version: 8.21.3(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cogito.ai/cli",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "type": "module",
5
5
  "description": "AgentDock CLI – scaffold projects for humans and AI agents",
6
6
  "publishConfig": {