Skip to content

Commit e7203e5

Browse files
gallaylGallay Lajos
andauthored
chore: dependency update (#80)
* chore: dependency update * updated import assertions --------- Co-authored-by: Gallay Lajos <gallay.lajos@gmailcom>
1 parent 1fd55bd commit e7203e5

File tree

19 files changed

+1192
-1171
lines changed

19 files changed

+1192
-1171
lines changed
Lines changed: 346 additions & 345 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
nodeLinker: node-modules
22

3-
yarnPath: .yarn/releases/yarn-4.6.0.cjs
3+
yarnPath: .yarn/releases/yarn-4.8.1.cjs

common/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
},
2727
"devDependencies": {
2828
"@types/ffprobe": "^1.1.8",
29-
"@types/node": "^22.13.1",
29+
"@types/node": "^22.13.14",
3030
"ts-json-schema-generator": "^2.3.0",
31-
"vitest": "^3.0.5"
31+
"vitest": "^3.1.1"
3232
},
3333
"dependencies": {
34-
"@furystack/core": "^15.0.13",
35-
"@furystack/rest": "^8.0.13"
34+
"@furystack/core": "^15.0.16",
35+
"@furystack/rest": "^8.0.16"
3636
}
3737
}

frontend/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,28 @@
1111
"author": "",
1212
"license": "ISC",
1313
"devDependencies": {
14-
"@codecov/vite-plugin": "^1.8.0",
15-
"@furystack/rest": "^8.0.13",
14+
"@codecov/vite-plugin": "^1.9.0",
15+
"@furystack/rest": "^8.0.16",
1616
"@types/marked": "^6.0.0",
17-
"typescript": "^5.7.3",
18-
"vite": "^6.1.0"
17+
"typescript": "^5.8.2",
18+
"vite": "^6.2.4"
1919
},
2020
"dependencies": {
21-
"@furystack/cache": "^5.0.10",
22-
"@furystack/core": "^15.0.13",
23-
"@furystack/inject": "^12.0.10",
24-
"@furystack/logging": "^8.0.10",
25-
"@furystack/rest-client-fetch": "^8.0.13",
26-
"@furystack/shades": "^11.0.14",
27-
"@furystack/shades-common-components": "^10.0.14",
28-
"@furystack/shades-lottie": "^7.0.14",
29-
"@furystack/utils": "^8.0.9",
30-
"@types/node": "^22.13.1",
21+
"@furystack/cache": "^5.0.13",
22+
"@furystack/core": "^15.0.16",
23+
"@furystack/inject": "^12.0.13",
24+
"@furystack/logging": "^8.0.13",
25+
"@furystack/rest-client-fetch": "^8.0.16",
26+
"@furystack/shades": "^11.0.17",
27+
"@furystack/shades-common-components": "^10.0.17",
28+
"@furystack/shades-lottie": "^7.0.17",
29+
"@furystack/utils": "^8.0.12",
30+
"@types/node": "^22.13.14",
3131
"common": "workspace:^",
3232
"marked": "^15.0.7",
3333
"monaco-editor": "^0.52.2",
3434
"path-to-regexp": "^8.2.0",
3535
"semaphore-async-await": "^1.5.1",
36-
"video.js": "8.22.0"
36+
"video.js": "8.23.0"
3737
}
3838
}

frontend/src/components/generic-error.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { ResponseError } from '@furystack/rest-client-fetch'
22
import { createComponent, ScreenService, Shade } from '@furystack/shades'
33
import { Button, ThemeProviderService } from '@furystack/shades-common-components'
4-
import deadSmiley from '../animations/error-dead-smiley.json' assert { type: 'json' }
5-
import redCross from '../animations/error-red-cross.json' assert { type: 'json' }
4+
import deadSmiley from '../animations/error-dead-smiley.json' with { type: 'json' }
5+
import redCross from '../animations/error-red-cross.json' with { type: 'json' }
66
import { ErrorReporter } from '../services/error-reporter.js'
77
import { Error404 } from './error-404.js'
88
import { ErrorDisplay } from './error-display.js'

frontend/src/installer/all-done-step.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { createComponent, Shade } from '@furystack/shades'
22
import type { WizardStepProps } from '@furystack/shades-common-components'
33
import '@furystack/shades-lottie'
44
import { WizardStep } from '../components/wizard-step.js'
5-
import done from './done.json' assert { type: 'json' }
5+
import done from './done.json' with { type: 'json' }
66

77
export const AllDoneStep = Shade<WizardStepProps>({
88
shadowDomName: 'all-done-step',

frontend/src/installer/welcome-step.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { createComponent, Shade } from '@furystack/shades'
22
import type { WizardStepProps } from '@furystack/shades-common-components'
33
import '@furystack/shades-lottie'
44
import { WizardStep } from '../components/wizard-step.js'
5-
import welcome from './welcome.json' assert { type: 'json' }
5+
import welcome from './welcome.json' with { type: 'json' }
66

77
export const WelcomeStep = Shade<WizardStepProps>({
88
shadowDomName: 'welcome-step',

frontend/src/pages/entities/config.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createComponent, Shade } from '@furystack/shades'
22
import { Config } from 'common'
3-
import configSchemas from 'common/schemas/config-entities.json' assert { type: 'json' }
3+
import configSchemas from 'common/schemas/config-entities.json' with { type: 'json' }
44
import { GenericEditorService } from '../../components/generic-editor/generic-editor-service.js'
55
import { GenericEditor } from '../../components/generic-editor/index.js'
66
import { ConfigApiClient } from '../../services/api-clients/config-api-client.js'

frontend/src/pages/entities/dashboards.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createComponent, RouteLink, Shade } from '@furystack/shades'
22
import { Dashboard } from 'common'
3-
import dashboardSchemas from 'common/schemas/dashboard-entities.json' assert { type: 'json' }
3+
import dashboardSchemas from 'common/schemas/dashboard-entities.json' with { type: 'json' }
44
import { GenericEditorService } from '../../components/generic-editor/generic-editor-service.js'
55
import { GenericEditor } from '../../components/generic-editor/index.js'
66
import { DashboardService } from '../../services/dashboards-service.js'

frontend/src/pages/entities/drives.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createComponent, Shade } from '@furystack/shades'
22
import { Drive } from 'common'
3-
import drivesSchemas from 'common/schemas/drives-entities.json' assert { type: 'json' }
3+
import drivesSchemas from 'common/schemas/drives-entities.json' with { type: 'json' }
44
import { GenericEditorService } from '../../components/generic-editor/generic-editor-service.js'
55
import { GenericEditor } from '../../components/generic-editor/index.js'
66
import { DrivesService } from '../../services/drives-service.js'

0 commit comments

Comments
 (0)