Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing commas #35

Merged
merged 2 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@digital-alchemy/type-writer",
"repository": "https://github.com/Digital-Alchemy-TS/type-writer",
"homepage": "https://docs.digital-alchemy.app/Type-Writer",
"version": "24.8.2",
"version": "24.9.1",
"scripts": {
"build": "rm -rf dist/; tsc",
"lint": "eslint src",
Expand Down Expand Up @@ -38,7 +38,7 @@
"devDependencies": {
"@cspell/eslint-plugin": "^8.7.0",
"@digital-alchemy/core": "^24.8.4",
"@digital-alchemy/hass": "^24.8.3",
"@digital-alchemy/hass": "^24.9.1",
"@types/figlet": "^1.5.8",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
Expand Down
6 changes: 3 additions & 3 deletions src/build.extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ export function BuildTypes({ logger, hass, type_build, config, internal }: TServ
`// This file is generated, and is automatically updated as a npm post install step`,
"// Do not edit this file, it will only affect type definitions, not functional code",
`import {`,
` AndroidNotificationData`,
` AppleNotificationData`,
` NotificationData`,
` AndroidNotificationData,`,
` AppleNotificationData,`,
` NotificationData,`,
` PICK_ENTITY,`,
`} from "./helpers";`,
``,
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -958,9 +958,9 @@ __metadata:
languageName: node
linkType: hard

"@digital-alchemy/hass@npm:^24.8.3":
version: 24.8.3
resolution: "@digital-alchemy/hass@npm:24.8.3"
"@digital-alchemy/hass@npm:^24.9.1":
version: 24.9.1
resolution: "@digital-alchemy/hass@npm:24.9.1"
dependencies:
dayjs: "npm:^1.11.11"
prom-client: "npm:^15.1.2"
Expand All @@ -971,7 +971,7 @@ __metadata:
"@digital-alchemy/core": "*"
bin:
mock-assistant: dist/mock_assistant/main.js
checksum: 10/0ed096946fc157a536e66fd15416538bf126af799d46fe194aa0326c46f64f944fe92de2a87d8c8caa7e62ba72fdb7ba155ce0d0a4af90a00fdf4cbf61fc0bfd
checksum: 10/8f3eb619187efc2750c9d768c8b1296d564cbf2e9969c902ada293b314a2ad8aba0435248d91f00a8bfd189db45d079e90933854cec472bf171ae238dd5ed5e2
languageName: node
linkType: hard

Expand All @@ -981,7 +981,7 @@ __metadata:
dependencies:
"@cspell/eslint-plugin": "npm:^8.7.0"
"@digital-alchemy/core": "npm:^24.8.4"
"@digital-alchemy/hass": "npm:^24.8.3"
"@digital-alchemy/hass": "npm:^24.9.1"
"@types/figlet": "npm:^1.5.8"
"@types/jest": "npm:^29.5.12"
"@types/js-yaml": "npm:^4.0.9"
Expand Down
Loading