Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
5a72447
refactor: eliminate barrel imports and add .js extensions
MrTravisB Feb 14, 2026
5922510
refactor: move CLI to packages/cli with workspace setup
MrTravisB Feb 14, 2026
8ee9c36
refactor: remove unused path aliases from tsconfig
MrTravisB Feb 14, 2026
23ae031
refactor(cli): remove barrel re-exports, use direct imports
MrTravisB Feb 14, 2026
c1bd543
refactor(cli): flatten directory structure
MrTravisB Feb 14, 2026
3584f45
build(cli): add package scripts and simplify root exports
MrTravisB Feb 14, 2026
dbf216c
build(cli): migrate to tsup and fix package.json path
MrTravisB Feb 14, 2026
7112eee
test(cli): use spark package imports in test mocks
MrTravisB Feb 14, 2026
eb47fec
refactor: move server to packages/server with workspace setup
MrTravisB Feb 14, 2026
161d370
build(server): update Docker configuration for monorepo structure
MrTravisB Feb 14, 2026
77babae
refactor(server): remove barrel re-export, use direct spark import
MrTravisB Feb 14, 2026
73aec3e
refactor(server): use direct spark imports instead of barrel
MrTravisB Feb 14, 2026
49fd231
test(server): update mocks to match direct import paths
MrTravisB Feb 14, 2026
a571169
refactor: move extension to packages/extension with workspace setup
MrTravisB Feb 14, 2026
ec93b86
fix(extension): add .js extensions to all imports
MrTravisB Feb 14, 2026
07d3465
refactor: move core library to packages/core for symmetry
MrTravisB Feb 14, 2026
a76363f
build(docker): update paths for core at packages/core
MrTravisB Feb 14, 2026
6c5fa2f
build: standardize scripts across all packages
MrTravisB Feb 14, 2026
19fbf77
ci: update workflows for new monorepo structure
MrTravisB Feb 14, 2026
d25e170
fix(ci): build core package before running workspace checks
MrTravisB Feb 14, 2026
4bd62df
chore: simplify monorepo scripts, remove duplication
MrTravisB Feb 14, 2026
9cc4a45
chore: rename core package from spark to spark-core
MrTravisB Feb 14, 2026
f13a801
fix: update remaining spark imports to spark-core
MrTravisB Feb 14, 2026
8a0e8a4
fix: update test mocks to use spark-core package name
MrTravisB Feb 14, 2026
a04e7d7
fix(ci): build core package in server and extension CI workflows
MrTravisB Feb 14, 2026
3fe9324
feat(ci): add workflow to check for dependency version mismatches
MrTravisB Feb 14, 2026
bed557c
feat(ci): consolidate workflows with smart change detection
MrTravisB Feb 14, 2026
62e5701
fix(ci): add permissions for change detection
MrTravisB Feb 14, 2026
b88a8ad
refactor(ci): simplify change detection logic
MrTravisB Feb 14, 2026
2538c04
refactor(ci): consolidate to single job with caching
MrTravisB Feb 14, 2026
67bc2d2
chore: rename CI workflow to build-and-test
MrTravisB Feb 14, 2026
510e1c3
refactor(ci): parallel jobs with shared cache
MrTravisB Feb 14, 2026
86043c7
fix(ci): run pnpm install in each job for proper workspace linking
MrTravisB Feb 14, 2026
576e417
chore(ci): remove old ci.yml, add install step comments
MrTravisB Feb 14, 2026
9851b23
feat(ci): run all tests when workflow files change
MrTravisB Feb 14, 2026
43063f3
docs: update CLAUDE.md for monorepo structure
MrTravisB Feb 14, 2026
1ebfe8d
refactor: move CLI to packages/cli with workspace setup
MrTravisB Feb 14, 2026
e1f67f3
refactor(cli): flatten directory structure
MrTravisB Feb 14, 2026
c3aad77
build(cli): add package scripts and simplify root exports
MrTravisB Feb 14, 2026
0794cf1
docs: update npm installation and config architecture documentation
MrTravisB Feb 14, 2026
b69adc4
fix: restore missing ariaTree files and tsconfig from develop
MrTravisB Feb 17, 2026
0291f46
refactor: move ariaTree from root src/ to packages/core/src/browser/
MrTravisB Feb 17, 2026
23c6efa
fix: update monorepo structure for proper workspace builds
MrTravisB Feb 17, 2026
45de081
refactor: move bundle:aria script to core package
MrTravisB Feb 17, 2026
2b632d7
fix: run bundle:aria before tests in core package
MrTravisB Feb 17, 2026
b279109
fix(build): wrap typecheck script and align dependency versions
MrTravisB Feb 17, 2026
d59309c
refactor(core): remove ariaTree barrel export
MrTravisB Feb 17, 2026
6a8d8b7
refactor(core): consolidate ariaTree exports into core.ts
MrTravisB Feb 17, 2026
dc264cb
chore: remove unused dependencies from root package.json
MrTravisB Feb 17, 2026
ec87766
fix merge issues
MrTravisB Feb 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Dependencies
**/node_modules/
npm-debug.log*
pnpm-debug.log*

# Build outputs (will be built in Docker)
**/dist/

# Environment files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# IDE files
.vscode/
.idea/
*.swp
*.swo

# OS files
.DS_Store
Thumbs.db

# Git
.git/
.gitignore
.gitattributes

# Documentation (except README)
*.md
!README.md

# Test files
test/
**/test/
*.test.*
*.spec.*

# Coverage
coverage/
**/coverage/

# Logs
logs/
*.log

# Docker
Dockerfile*
.dockerignore
docker-compose*.yml

# CI/CD
.github/

# Agent and plan files
.dotagent/

# Extension package (not needed for server)
packages/extension/

# CLI source (only package.json needed for workspace)
packages/cli/src/
packages/cli/dist/

# Scripts
scripts/
Loading