@mr.dj2u/cli 0.1.11 → 0.1.13
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/bundles/claude-code/.claude-plugin/plugin.json +1 -1
- package/bundles/claude-code/.mcp.json +1 -1
- package/bundles/claude-code/commands/create-expo-super-stack.md +10 -7
- package/bundles/claude-code/skills/create-expo-super-stack/SKILL.md +10 -7
- package/bundles/claude-code/skills/super-stack-startup/SKILL.md +1 -1
- package/bundles/codex/.codex-plugin/plugin.json +1 -1
- package/bundles/codex/.mcp.json +1 -1
- package/bundles/codex/commands/create-expo-super-stack.md +10 -7
- package/bundles/codex/skills/super-stack-startup/SKILL.md +1 -1
- package/bundles/codex/skills/workflow-create-expo-super-stack/SKILL.md +10 -7
- package/bundles/vscode-copilot/.github/prompts/create-expo-super-stack.prompt.md +10 -7
- package/bundles/vscode-copilot/.github/skills/super-stack-startup/SKILL.md +1 -1
- package/bundles/vscode-copilot/.vscode/mcp.json +1 -1
- package/bundles/vscode-copilot/user/.copilot/skills/super-stack-startup/SKILL.md +1 -1
- package/bundles/vscode-copilot/user/.copilot/skills/workflow-create-expo-super-stack/SKILL.md +10 -7
- package/dist/cess-intake.d.ts +16 -1
- package/dist/cess-intake.d.ts.map +1 -1
- package/dist/cess-intake.js +677 -34
- package/dist/cess-intake.js.map +1 -1
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +14 -4
- package/dist/cli.js.map +1 -1
- package/dist/commands/agent.d.ts.map +1 -1
- package/dist/commands/agent.js +3 -1
- package/dist/commands/agent.js.map +1 -1
- package/dist/commands/mcp-install.d.ts +3 -2
- package/dist/commands/mcp-install.d.ts.map +1 -1
- package/dist/commands/mcp-install.js +17 -44
- package/dist/commands/mcp-install.js.map +1 -1
- package/dist/commands/onboard.d.ts +9 -3
- package/dist/commands/onboard.d.ts.map +1 -1
- package/dist/commands/onboard.js +28 -10
- package/dist/commands/onboard.js.map +1 -1
- package/dist/commands/roadmap.d.ts +6 -0
- package/dist/commands/roadmap.d.ts.map +1 -0
- package/dist/commands/roadmap.js +54 -0
- package/dist/commands/roadmap.js.map +1 -0
- package/dist/project-memory.d.ts +8 -1
- package/dist/project-memory.d.ts.map +1 -1
- package/dist/project-memory.js +189 -93
- package/dist/project-memory.js.map +1 -1
- package/dist/roadmap.d.ts +71 -0
- package/dist/roadmap.d.ts.map +1 -0
- package/dist/roadmap.js +865 -0
- package/dist/roadmap.js.map +1 -0
- package/dist/stylist-theme.d.ts.map +1 -1
- package/dist/stylist-theme.js +1 -20
- package/dist/stylist-theme.js.map +1 -1
- package/package.json +7 -3
- package/templates/embedded-fonts.template.ts +72 -72
- package/templates/expo-sdk-56-screen-universal.template.tsx +709 -709
- package/templates/project/guidelines.md +4 -5
- package/templates/stylist-screen.template.tsx +3456 -3446
|
@@ -41,12 +41,11 @@ it for the app before treating it as final.
|
|
|
41
41
|
- Platform layout mode: {{platformLayoutMode}}
|
|
42
42
|
- Web output: {{webOutput}}
|
|
43
43
|
- Deployed server: {{deployedServer}}
|
|
44
|
-
- Latest Expo SDK preference: {{useLatestExpoSdk}}
|
|
45
44
|
- Advanced package setup: {{advancedPackageSetup}}
|
|
46
|
-
- Create Expo starter components: {{includeCreateExpoComponents}}
|
|
47
|
-
- Expo UI: {{usesExpoUi}}
|
|
48
|
-
- Expo UI Universal components: {{usesExpoUiUniversalComponents}}
|
|
49
|
-
- Expo Native Tabs: {{usesExpoNativeTabs}}
|
|
45
|
+
- Create Expo starter components: {{includeCreateExpoComponents}}
|
|
46
|
+
- Expo UI: {{usesExpoUi}}
|
|
47
|
+
- Expo UI Universal components: {{usesExpoUiUniversalComponents}}
|
|
48
|
+
- Expo Native Tabs: {{usesExpoNativeTabs}}
|
|
50
49
|
- Data start: {{dataStart}}
|
|
51
50
|
- Test-to-main safeguards: {{testToMainSafeguards}}
|
|
52
51
|
- EAS usage:
|