sunpeak 0.5.4 → 0.5.6

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.
@@ -1,11 +1,2 @@
1
- @import "tailwindcss";
2
- @import "@openai/apps-sdk-ui/css";
3
-
4
1
  /* Scan simulator source files for Tailwind classes */
5
2
  @source "./**/*.{ts,tsx}";
6
-
7
- /* Required for Tailwind to find class references in Apps SDK UI components. */
8
- @source "../node_modules/@openai/apps-sdk-ui";
9
-
10
- /* Configure dark mode to use data-theme attribute (OpenAI SDK standard) */
11
- @custom-variant dark (&:where([data-theme="dark"], [data-theme="dark"] *));
package/dist/style.css CHANGED
@@ -1 +1,2 @@
1
- @import "./chatgpt/globals.css";
1
+ /* Scan simulator source files for Tailwind classes */
2
+ @source "./**/*.{ts,tsx}";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sunpeak",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "description": "The MCP App SDK. Quickstart, build, & test your ChatGPT App locally!",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -18,6 +18,7 @@
18
18
  }
19
19
  },
20
20
  "./style.css": "./dist/style.css",
21
+ "./chatgpt/globals.css": "./dist/chatgpt/globals.css",
21
22
  "./mcp": {
22
23
  "import": {
23
24
  "types": "./dist/mcp/index.d.ts",
@@ -1,10 +1,14 @@
1
1
  @import "tailwindcss";
2
2
  @import "@openai/apps-sdk-ui/css";
3
3
 
4
+ /* Import simulator source scanning from sunpeak */
5
+ @import "sunpeak/chatgpt/globals.css";
6
+
7
+ /* Scan app-specific source files for Tailwind classes */
8
+ @source "../src/**/*.{ts,tsx}";
9
+
4
10
  /* Required for Tailwind to find class references in Apps SDK UI components. */
5
11
  @source "../node_modules/@openai/apps-sdk-ui";
6
12
 
7
13
  /* Configure dark mode to use data-theme attribute (OpenAI SDK standard) */
8
14
  @custom-variant dark (&:where([data-theme="dark"], [data-theme="dark"] *));
9
-
10
- @import 'sunpeak/style.css';