Skip to content

Commit 10ebabf

Browse files
committed
hyperexecute_capture doc
1 parent 82bc2e5 commit 10ebabf

File tree

5 files changed

+1546
-5
lines changed

5 files changed

+1546
-5
lines changed

.gitignore

Lines changed: 113 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,129 @@
11
# Dependencies
22
/node_modules
3+
node_modules/
34

45
# Production
56
/build
7+
dist/
8+
out/
69

710
# Generated files
811
.docusaurus
912
.cache-loader
13+
.cache/
14+
*.cache
1015

11-
# Misc
16+
# OS Files
1217
.DS_Store
18+
.DS_Store?
19+
._*
20+
.Spotlight-V100
21+
.Trashes
22+
ehthumbs.db
23+
Thumbs.db
24+
Desktop.ini
25+
$RECYCLE.BIN/
26+
27+
# IDE and Editor Files
28+
.vscode/
29+
.idea/
30+
*.swp
31+
*.swo
32+
*~
33+
.project
34+
.classpath
35+
.settings/
36+
*.sublime-project
37+
*.sublime-workspace
38+
*.code-workspace
39+
.vscode-test/
40+
41+
# Logs
42+
logs/
43+
*.log
44+
npm-debug.log*
45+
yarn-debug.log*
46+
yarn-error.log*
47+
pnpm-debug.log*
48+
lerna-debug.log*
49+
*.log.*
50+
51+
# Environment Variables
52+
.env
1353
.env.local
1454
.env.development.local
1555
.env.test.local
1656
.env.production.local
57+
.env*.local
1758

18-
npm-debug.log*
19-
yarn-debug.log*
20-
yarn-error.log*
21-
pnpm-lock.yaml
59+
# Package Manager Lock Files
60+
pnpm-lock.yaml
61+
package-lock.json
62+
yarn.lock
63+
64+
# Temporary Files
65+
*.tmp
66+
*.temp
67+
*.bak
68+
*.backup
69+
*.old
70+
*.orig
71+
*.rej
72+
*.swp
73+
*.swo
74+
*~
75+
76+
# Test Coverage
77+
coverage/
78+
.nyc_output/
79+
*.lcov
80+
.coveralls.yml
81+
82+
# Build Artifacts
83+
*.map
84+
*.min.js
85+
*.min.css
86+
*.bundle.js
87+
*.chunk.js
88+
89+
# Cache Directories
90+
.cache/
91+
.parcel-cache/
92+
.next/
93+
.nuxt/
94+
.turbo/
95+
.eslintcache
96+
.stylelintcache
97+
98+
# Runtime Data
99+
pids/
100+
*.pid
101+
*.seed
102+
*.pid.lock
103+
104+
# Optional npm cache directory
105+
.npm
106+
107+
# Optional eslint cache
108+
.eslintcache
109+
110+
# Optional REPL history
111+
.node_repl_history
112+
113+
# Output of 'npm pack'
114+
*.tgz
115+
116+
# Yarn Integrity file
117+
.yarn-integrity
118+
119+
# Documentation Generator Agent (local tool only)
120+
/scripts/doc-generator-agent.js
121+
/scripts/*-doc-generator.md
122+
/scripts/QUICK-START-GUIDE.md
123+
/scripts/WORKFLOW-DIAGRAM.md
124+
/scripts/COMMAND-REFERENCE.md
125+
/scripts/INDEX.md
126+
/scripts/README.md
127+
/scripts/example-feature-config.json
128+
/scripts/example-output.md
129+
/scripts/dark-mode-feature.json

0 commit comments

Comments
 (0)