- Updated .dockerignore to include additional logs and IDE files, improving Docker build efficiency. - Added .eslintrc.json for TypeScript linting configuration, ensuring code quality and consistency. - Refactored Dockerfile to streamline the build process and utilize a slimmer Node.js image. - Introduced jest-resolver.cjs and jest.setup.js for improved Jest testing configuration and setup. - Updated jest.config.js to support ESM and added new test patterns for better test organization. - Enhanced TypeScript schemas to include new device types (media_player, fan, lock, vacuum, scene, script, camera) for comprehensive validation. - Added unit tests for device schemas and Home Assistant connection, improving test coverage and reliability. - Updated README.md with new testing instructions and device control examples, enhancing user guidance.
36 lines
358 B
Plaintext
36 lines
358 B
Plaintext
# Dependencies
|
|
node_modules
|
|
npm-debug.log
|
|
yarn-debug.log
|
|
yarn-error.log
|
|
|
|
# Build output
|
|
dist
|
|
|
|
# Version control
|
|
.git
|
|
.gitignore
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE files
|
|
.vscode
|
|
.idea
|
|
|
|
# Test files
|
|
coverage
|
|
__tests__
|
|
jest.config.js
|
|
jest.setup.js
|
|
*.test.ts
|
|
*.spec.ts
|
|
|
|
# Other
|
|
*.md
|
|
.DS_Store
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore |