@dfosco/storyboard-core 4.2.3 → 4.2.4
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/package.json +1 -1
- package/scaffold/gitignore +64 -0
- package/scaffold/manifest.json +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
2
|
+
|
|
3
|
+
# dependencies
|
|
4
|
+
/node_modules
|
|
5
|
+
/packages/**/node_modules
|
|
6
|
+
/.pnp
|
|
7
|
+
.pnp.js
|
|
8
|
+
|
|
9
|
+
# testing
|
|
10
|
+
/coverage
|
|
11
|
+
|
|
12
|
+
# production
|
|
13
|
+
/build
|
|
14
|
+
/dist
|
|
15
|
+
|
|
16
|
+
# misc
|
|
17
|
+
.DS_Store
|
|
18
|
+
.env.local
|
|
19
|
+
.env.development.local
|
|
20
|
+
.env.test.local
|
|
21
|
+
.env.production.local
|
|
22
|
+
|
|
23
|
+
npm-debug.log*
|
|
24
|
+
yarn-debug.log*
|
|
25
|
+
yarn-error.log*
|
|
26
|
+
.playwright-profile
|
|
27
|
+
|
|
28
|
+
.github/skills/_archive
|
|
29
|
+
.github/skills/primer-primitives
|
|
30
|
+
.github/skills/primer-components-catalog
|
|
31
|
+
.github/skills/primer-screenshot-builder
|
|
32
|
+
.github/skills/primer-screenshot-patterns
|
|
33
|
+
.github/skills/primer-url-builder
|
|
34
|
+
.github/skills/playwright-cli
|
|
35
|
+
.worktrees
|
|
36
|
+
# Agent symlinks are build targets — source of truth is .agents/agents/
|
|
37
|
+
# storyboard setup creates symlinks for Copilot CLI and Claude Code
|
|
38
|
+
.github/agents/_buddy-rails.md
|
|
39
|
+
.github/agents/_buddy.md
|
|
40
|
+
.github/agents/terminal-agent.md
|
|
41
|
+
.github/agents/prompt-agent.md
|
|
42
|
+
.claude/agents/
|
|
43
|
+
_*.md
|
|
44
|
+
|
|
45
|
+
# Compiled UI bundle (built before publish, not tracked in git)
|
|
46
|
+
packages/core/dist/storyboard-ui.*
|
|
47
|
+
|
|
48
|
+
.clips
|
|
49
|
+
|
|
50
|
+
# Agent Browser
|
|
51
|
+
agent-browser.json
|
|
52
|
+
|
|
53
|
+
# Selected widgets bridge (real-time canvas selection for Copilot)
|
|
54
|
+
.storyboard
|
|
55
|
+
|
|
56
|
+
# Private canvas images (tilde prefix = not committed)
|
|
57
|
+
src/canvas/images/~*
|
|
58
|
+
assets/canvas/images/~*
|
|
59
|
+
assets/canvas/snapshots/~*
|
|
60
|
+
assets/.storyboard-public/terminal-snapshots/~*
|
|
61
|
+
.sync-target
|
|
62
|
+
|
|
63
|
+
# Integration test results (ephemeral local artifacts)
|
|
64
|
+
test-results/
|