Skip to content

Commit e9bf669

Browse files
committed
⬆️ Update packages to latest version
1 parent a19d933 commit e9bf669

File tree

10 files changed

+541
-183
lines changed

10 files changed

+541
-183
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ Webcore can be used as a standalone project, or it can be integrated into your e
6060
6161
Webcore components use Sass for styling. To use the component library, you must have the following packages installed:
6262

63-
- [Sass](https://www.npmjs.com/package/sass) - `v1.86`
63+
- [Sass](https://www.npmjs.com/package/sass) - `v1.9`
6464
- [TypeScript](https://www.npmjs.com/package/typescript) - `v5.8`
6565

6666
Depending on your project setup, you'll also need the following packages:
6767

6868
- **For Astro projects**
69-
- [Astro](https://www.npmjs.com/package/astro) - `v5.5`
69+
- [Astro](https://www.npmjs.com/package/astro) - `v5.13`
7070
- **For Svelte projects**
71-
- [Svelte](https://www.npmjs.com/package/svelte) - `v5.25`
71+
- [Svelte](https://www.npmjs.com/package/svelte) - `v5.38`
7272
- **For React projects**
7373
- [React](https://www.npmjs.com/package/react) - `v19.0`
7474
- [React DOM](https://www.npmjs.com/package/react-dom) -`v19.0`

package-lock.json

Lines changed: 524 additions & 169 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
},
1919
"devDependencies": {
2020
"@astrojs/check": "0.9.4",
21-
"@astrojs/node": "9.1.3",
22-
"@astrojs/react": "4.2.1",
23-
"@astrojs/svelte": "7.0.7",
21+
"@astrojs/node": "9.4.1",
22+
"@astrojs/react": "4.3.0",
23+
"@astrojs/svelte": "7.1.0",
2424
"@eslint/js": "9.23.0",
25-
"@typescript-eslint/parser": "8.27.0",
26-
"astro": "5.5.4",
25+
"@typescript-eslint/parser": "8.39.1",
26+
"astro": "5.13.0",
2727
"astro-eslint-parser": "1.2.2",
2828
"eslint": "9.23.0",
2929
"eslint-plugin-astro": "1.3.1",
@@ -35,12 +35,12 @@
3535
"lint-staged": "15.5.0",
3636
"react": "19.0.0",
3737
"react-dom": "19.0.0",
38-
"sass": "1.86.0",
38+
"sass": "1.90.0",
3939
"sass-true": "8.1.0",
40-
"svelte": "5.25.3",
40+
"svelte": "5.38.1",
4141
"svelte-eslint-parser": "1.1.0",
42-
"typescript": "5.8.2",
43-
"typescript-eslint": "8.27.0",
42+
"typescript": "5.9.2",
43+
"typescript-eslint": "8.39.1",
4444
"vite-tsconfig-paths": "5.1.4",
4545
"vitest": "3.0.4",
4646
"webcoreui": "1.0.0"

src/components/Card/card.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { JSX } from 'react'
12
import type { Snippet } from 'svelte'
23

34
export type CardProps = {

src/components/Flex/flex.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { JSX } from 'react'
12
import type { Snippet } from 'svelte'
23

34
import type {

src/components/Grid/grid.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { JSX } from 'react'
12
import type { Snippet } from 'svelte'
23

34
import type {

src/components/TimelineItem/timelineitem.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { JSX } from 'react'
12
import type { Snippet } from 'svelte'
23

34
import type { IconProps } from '../Icon/icon'

src/pages/blocks/icon.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import ReactIcon from '@blocks/Icon/Icon.tsx'
99
1010
import { getSections } from '@helpers'
1111
12-
// @ts-expect-error no-module
1312
import fs from 'fs'
1413
1514
const sections = getSections({

src/pages/components/icon.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import ReactIcon from '@components/Icon/Icon.tsx'
88
99
import { getSections } from '@helpers'
1010
11-
// @ts-expect-error no-module
1211
import fs from 'fs'
1312
1413
const sections = getSections({

src/tests/bodyFreeze.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ describe('bodyFreeze', () => {
2020
get: vi.fn(() => 1000)
2121
})
2222

23+
// @ts-expect-error missing property
2324
globalThis.setTimeout = vi.fn((fn, _) => fn())
2425
})
2526

0 commit comments

Comments
 (0)