attio 0.0.1-experimental.20250813.1 → 0.0.1-experimental.20250813.2
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/README.md +1 -1
- package/lib/commands/dev.js +1 -1
- package/lib/commands/logs.js +1 -1
- package/lib/template/README.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/lib/commands/dev.js
CHANGED
|
@@ -33,7 +33,7 @@ export const optionsSchema = z.object({
|
|
|
33
33
|
});
|
|
34
34
|
export const dev = new Command("dev")
|
|
35
35
|
.description("Develop your Attio app")
|
|
36
|
-
.addOption(new Option("--workspace <slug>", "The slug of the workspace to use"))
|
|
36
|
+
.addOption(new Option("-w, --workspace <slug>", "The slug of the workspace to use"))
|
|
37
37
|
.action(async (unparsedOptions) => {
|
|
38
38
|
const { workspace: workspaceSlug } = optionsSchema.parse(unparsedOptions);
|
|
39
39
|
const cleanupFunctions = [];
|
package/lib/commands/logs.js
CHANGED
|
@@ -14,7 +14,7 @@ export const optionsSchema = z.object({
|
|
|
14
14
|
});
|
|
15
15
|
export const logs = new Command("logs")
|
|
16
16
|
.description("Stream development server logs")
|
|
17
|
-
.addOption(new Option("--workspace <slug>", "The slug of the workspace to get the logs from"))
|
|
17
|
+
.addOption(new Option("-w, --workspace <slug>", "The slug of the workspace to get the logs from"))
|
|
18
18
|
.action(async (unparsedOptions) => {
|
|
19
19
|
const { workspace: workspaceSlug } = optionsSchema.parse(unparsedOptions);
|
|
20
20
|
await authenticator.ensureAuthed();
|
package/lib/template/README.md
CHANGED