Compare commits

...

4 Commits

Author SHA1 Message Date
Marco Pasqualetti 89d7a2c740 chore: add examples folder to workspaces and make examples packages name unique (#125) 2024-11-20 13:46:31 +01:00
Valerio Ageno 56c31f0204 feat: update version to v0.13.3 2024-11-20 13:45:37 +01:00
renovate[bot] 338cfb5be2 fix(deps): update dependency @types/node to v22.9.1 (#121)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-20 09:03:32 +01:00
renovate[bot] 43f6fe664b chore(deps): update pnpm to v9.14.1 (#124)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-11-20 09:03:03 +01:00
59 changed files with 182 additions and 100 deletions
+3 -3
View File
@@ -7,8 +7,8 @@ members = [
]
exclude = [
"apps/documentation",
"examples/mdx",
"examples/tuono",
"examples/tutorial",
"examples/wit-mdx",
"examples/tuono-app",
"examples/tuono-tutorial",
"benches/tuono"
]
@@ -21,7 +21,7 @@ This tutorial is not meant for people who don't know React - in that case, I sug
If you prefer to just read the code rather than write you can download the finished tutorial project with:
```bash
$ tuono new tutorial --template tutorial
$ tuono new tutorial --template tuono-tutorial
```
> I'd love to hear your thoughts about the framework and the tutorial - feel free to reach me at [valerioageno@yahoo.it](mailto:valerioageno@ahoo.it)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "tuono"
version = "0.13.2"
version = "0.13.3"
edition = "2021"
authors = ["V. Ageno <valerioageno@yahoo.it>"]
description = "Superfast React fullstack framework"
+1 -1
View File
@@ -42,7 +42,7 @@ pub fn create_new_project(folder_name: Option<String>, template: Option<String>)
let folder = folder_name.unwrap_or(".".to_string());
// In case of missing select the tuono example
let template = template.unwrap_or("tuono".to_string());
let template = template.unwrap_or("tuono-app".to_string());
let client = blocking::Client::builder()
.user_agent("")
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "tuono_lib"
version = "0.13.2"
version = "0.13.3"
edition = "2021"
authors = ["V. Ageno <valerioageno@yahoo.it>"]
description = "Superfast React fullstack framework"
@@ -31,7 +31,7 @@ either = "1.13.0"
tower-http = {version = "0.6.0", features = ["fs"]}
colored = "2.1.0"
tuono_lib_macros = {path = "../tuono_lib_macros", version = "0.13.2"}
tuono_lib_macros = {path = "../tuono_lib_macros", version = "0.13.3"}
# Match the same version used by axum
tokio-tungstenite = "0.24.0"
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "tuono_lib_macros"
version = "0.13.2"
version = "0.13.3"
edition = "2021"
description = "Superfast React fullstack framework"
homepage = "https://tuono.dev"
-11
View File
@@ -15,14 +15,3 @@ $ tuono new [NAME] --template [TEMPLATE]
```
`[TEMPLATE]` is the folder name.
## Troubleshooting for contributors
There is a common error that happens during example development due to
pnpm workspace about the findings of different react versions.
To overcome this issue run within the single example folder:
```
pnpm install --ignore-workspace && pnpm upgrade --save
```
@@ -1,5 +1,5 @@
[package]
name = "tuono"
name = "tuono-app"
version = "0.0.1"
edition = "2021"
@@ -1,6 +1,6 @@
{
"name": "tuono",
"description": "The react/rust fullstack framework",
"name": "tuono-app",
"description": "Basic tuono application",
"version": "0.0.1",
"dependencies": {
"react": "18.3.1",

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

@@ -23,7 +23,7 @@ body {
}
main {
width: 673px;
max-width: 673px;
margin: 20px auto;
}
@@ -1,5 +1,5 @@
[package]
name = "tuono"
name = "tuono-tutorial"
version = "0.0.1"
edition = "2021"
+9
View File
@@ -0,0 +1,9 @@
# Tuono tutorial
This project is the outcome of the [tuono tutorial](https://tuono.dev/documentation/tutorial)
If you want to directly install it you can run:
```bash
$ tuono new my-project -t tuono-tutorial
```
@@ -1,6 +1,6 @@
{
"name": "tuono-tutorial",
"description": "The react/rust fullstack framework",
"description": "The basic tutorial for tuono applications",
"version": "0.0.1",
"dependencies": {
"react": "18.3.1",

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

-9
View File
@@ -1,9 +0,0 @@
# Tuono tutorial
This project is the outcome of the [tuono tutorial](https://github.com/Valerioageno/tuono/blob/main/docs/tutorial.md)
If you want to directly install it you can run:
```bash
$ tuono new my-project -t tutorial
```
@@ -1,5 +1,5 @@
[package]
name = "tuono"
name = "with-mdx"
version = "0.0.1"
edition = "2021"
@@ -1,6 +1,6 @@
{
"name": "tuono",
"description": "The react/rust fullstack framework",
"name": "with-mdx",
"description": "Tuono example combined with mdx",
"version": "0.0.1",
"dependencies": {
"@mdx-js/react": "^3.0.1",

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 39 KiB

+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "workspace",
"packageManager": "pnpm@9.13.2+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a",
"packageManager": "pnpm@9.14.1+sha512.7f1de9cffea40ff4594c48a94776112a0db325e81fb18a9400362ff7b7247f4fbd76c3011611c9f8ac58743c3dc526017894e07948de9b72052f874ee2edfdcd",
"scripts": {
"dev": "turbo dev --filter=./packages/*",
"build": "turbo build --filter=./packages/*",
@@ -15,7 +15,7 @@
"docs:format:check": "turbo format:check --filter=documentation",
"docs:types": "turbo types --filter=documentation",
"repo:root:format": "prettier . !./apps/** !./assets/** !./benches/** !./crates !./examples !./packages/** --write",
"check-all": "turbo build lint format:check types"
"check-all": "turbo build lint format:check types --filter=!./examples"
},
"author": "Valerio Ageno",
"license": "MIT",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "tuono-fs-router-vite-plugin",
"version": "0.13.2",
"version": "0.13.3",
"description": "Plugin for the tuono's file system router. Tuono is the react/rust fullstack framework",
"homepage": "https://tuono.dev",
"scripts": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "tuono-lazy-fn-vite-plugin",
"version": "0.13.2",
"version": "0.13.3",
"description": "Plugin for the tuono's lazy fn. Tuono is the react/rust fullstack framework",
"homepage": "https://tuono.dev",
"scripts": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "tuono-router",
"version": "0.13.2",
"version": "0.13.3",
"description": "React routing component for the framework tuono. Tuono is the react/rust fullstack framework",
"homepage": "https://tuono.dev",
"scripts": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "tuono",
"version": "0.13.2",
"version": "0.13.3",
"description": "Superfast React fullstack framework",
"homepage": "https://tuono.dev",
"scripts": {
+148 -55
View File
@@ -14,10 +14,10 @@ importers:
devDependencies:
'@tanstack/config':
specifier: ^0.7.0
version: 0.7.13(@types/node@22.9.0)(esbuild@0.21.5)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))
version: 0.7.13(@types/node@22.9.1)(esbuild@0.21.5)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))
'@types/node':
specifier: ^22.0.0
version: 22.9.0
version: 22.9.1
'@types/react':
specifier: ^18.3.1
version: 18.3.12
@@ -29,7 +29,7 @@ importers:
version: 8.15.0(eslint@8.57.1)(typescript@5.6.3)
'@vitejs/plugin-react':
specifier: ^4.2.1
version: 4.3.3(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))
version: 4.3.3(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))
eslint:
specifier: ^8.56.0
version: 8.57.1
@@ -56,10 +56,10 @@ importers:
version: 5.6.3
vite:
specifier: ^5.2.11
version: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
version: 5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
vitest:
specifier: ^2.0.0
version: 2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sugarss@4.0.1(postcss@8.4.49))
version: 2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sugarss@4.0.1(postcss@8.4.49))
apps/documentation:
dependencies:
@@ -110,6 +110,75 @@ importers:
specifier: ^7.0.1
version: 7.0.1(postcss@8.4.49)
examples/tuono-app:
dependencies:
react:
specifier: 18.3.1
version: 18.3.1
react-dom:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
tuono:
specifier: link:../../packages/tuono
version: link:../../packages/tuono
devDependencies:
'@types/react':
specifier: ^18.3.3
version: 18.3.12
'@types/react-dom':
specifier: ^18.3.0
version: 18.3.1
typescript:
specifier: ^5.4.5
version: 5.6.3
examples/tuono-tutorial:
dependencies:
react:
specifier: 18.3.1
version: 18.3.1
react-dom:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
tuono:
specifier: link:../../packages/tuono
version: link:../../packages/tuono
devDependencies:
'@types/react':
specifier: ^18.3.3
version: 18.3.12
'@types/react-dom':
specifier: ^18.3.0
version: 18.3.1
typescript:
specifier: ^5.4.5
version: 5.6.3
examples/with-mdx:
dependencies:
'@mdx-js/react':
specifier: ^3.0.1
version: 3.1.0(@types/react@18.3.12)(react@18.3.1)
react:
specifier: 18.3.1
version: 18.3.1
react-dom:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
tuono:
specifier: link:../../packages/tuono
version: link:../../packages/tuono
devDependencies:
'@types/react':
specifier: ^18.3.3
version: 18.3.12
'@types/react-dom':
specifier: ^18.3.0
version: 18.3.1
typescript:
specifier: ^5.5.3
version: 5.6.3
packages/fs-router-vite-plugin:
dependencies:
'@babel/core':
@@ -123,17 +192,17 @@ importers:
version: 3.3.3
vite:
specifier: ^5.2.11
version: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
version: 5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
devDependencies:
'@tanstack/config':
specifier: ^0.7.11
version: 0.7.13(@types/node@22.9.0)(esbuild@0.21.5)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))
version: 0.7.13(@types/node@22.9.1)(esbuild@0.21.5)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))
'@types/babel__core':
specifier: ^7.20.5
version: 7.20.5
vitest:
specifier: ^2.0.0
version: 2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sugarss@4.0.1(postcss@8.4.49))
version: 2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sugarss@4.0.1(postcss@8.4.49))
packages/lazy-fn-vite-plugin:
dependencies:
@@ -145,11 +214,11 @@ importers:
version: 7.26.0
vite:
specifier: ^5.2.11
version: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
version: 5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
devDependencies:
'@tanstack/config':
specifier: ^0.7.11
version: 0.7.13(@types/node@22.9.0)(esbuild@0.21.5)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))
version: 0.7.13(@types/node@22.9.1)(esbuild@0.21.5)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))
'@types/babel__core':
specifier: ^7.20.5
version: 7.20.5
@@ -158,7 +227,7 @@ importers:
version: 3.3.3
vitest:
specifier: ^2.0.0
version: 2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sugarss@4.0.1(postcss@8.4.49))
version: 2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sugarss@4.0.1(postcss@8.4.49))
packages/router:
dependencies:
@@ -173,14 +242,14 @@ importers:
version: 9.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
vite:
specifier: ^5.2.11
version: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
version: 5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
zustand:
specifier: 4.4.7
version: 4.4.7(@types/react@18.3.12)(react@18.3.1)
devDependencies:
'@tanstack/config':
specifier: ^0.7.11
version: 0.7.13(@types/node@22.9.0)(esbuild@0.21.5)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))
version: 0.7.13(@types/node@22.9.1)(esbuild@0.21.5)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))
'@testing-library/jest-dom':
specifier: ^6.6.0
version: 6.6.3
@@ -195,7 +264,7 @@ importers:
version: 3.3.3
vitest:
specifier: ^2.0.0
version: 2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sugarss@4.0.1(postcss@8.4.49))
version: 2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sugarss@4.0.1(postcss@8.4.49))
packages/tuono:
dependencies:
@@ -234,10 +303,10 @@ importers:
version: 7.20.5
'@types/node':
specifier: ^22.0.0
version: 22.9.0
version: 22.9.1
'@vitejs/plugin-react-swc':
specifier: ^3.7.0
version: 3.7.1(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))
version: 3.7.1(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))
fast-text-encoding:
specifier: ^1.0.6
version: 1.0.6
@@ -261,7 +330,7 @@ importers:
version: link:../router
vite:
specifier: ^5.2.11
version: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
version: 5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
devDependencies:
'@types/babel-traverse':
specifier: ^6.25.10
@@ -280,7 +349,7 @@ importers:
version: 3.3.3
vitest:
specifier: ^2.0.0
version: 2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sugarss@4.0.1(postcss@8.4.49))
version: 2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sugarss@4.0.1(postcss@8.4.49))
packages:
@@ -1003,6 +1072,9 @@ packages:
'@types/node@22.9.0':
resolution: {integrity: sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==}
'@types/node@22.9.1':
resolution: {integrity: sha512-p8Yy/8sw1caA8CdRIQBG5tiLHmxtQKObCijiAa9Ez+d4+PRffM4054xbju0msf+cvhJpnFEeNjxmVT/0ipktrg==}
'@types/prop-types@15.7.13':
resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
@@ -3902,23 +3974,23 @@ snapshots:
- acorn
- supports-color
'@microsoft/api-extractor-model@7.28.13(@types/node@22.9.0)':
'@microsoft/api-extractor-model@7.28.13(@types/node@22.9.1)':
dependencies:
'@microsoft/tsdoc': 0.14.2
'@microsoft/tsdoc-config': 0.16.2
'@rushstack/node-core-library': 4.0.2(@types/node@22.9.0)
'@rushstack/node-core-library': 4.0.2(@types/node@22.9.1)
transitivePeerDependencies:
- '@types/node'
'@microsoft/api-extractor@7.43.0(@types/node@22.9.0)':
'@microsoft/api-extractor@7.43.0(@types/node@22.9.1)':
dependencies:
'@microsoft/api-extractor-model': 7.28.13(@types/node@22.9.0)
'@microsoft/api-extractor-model': 7.28.13(@types/node@22.9.1)
'@microsoft/tsdoc': 0.14.2
'@microsoft/tsdoc-config': 0.16.2
'@rushstack/node-core-library': 4.0.2(@types/node@22.9.0)
'@rushstack/node-core-library': 4.0.2(@types/node@22.9.1)
'@rushstack/rig-package': 0.5.2
'@rushstack/terminal': 0.10.0(@types/node@22.9.0)
'@rushstack/ts-command-line': 4.19.1(@types/node@22.9.0)
'@rushstack/terminal': 0.10.0(@types/node@22.9.1)
'@rushstack/ts-command-line': 4.19.1(@types/node@22.9.1)
lodash: 4.17.21
minimatch: 3.0.8
resolve: 1.22.8
@@ -4015,7 +4087,7 @@ snapshots:
'@rtsao/scc@1.1.0': {}
'@rushstack/node-core-library@4.0.2(@types/node@22.9.0)':
'@rushstack/node-core-library@4.0.2(@types/node@22.9.1)':
dependencies:
fs-extra: 7.0.1
import-lazy: 4.0.0
@@ -4024,23 +4096,23 @@ snapshots:
semver: 7.5.4
z-schema: 5.0.5
optionalDependencies:
'@types/node': 22.9.0
'@types/node': 22.9.1
'@rushstack/rig-package@0.5.2':
dependencies:
resolve: 1.22.8
strip-json-comments: 3.1.1
'@rushstack/terminal@0.10.0(@types/node@22.9.0)':
'@rushstack/terminal@0.10.0(@types/node@22.9.1)':
dependencies:
'@rushstack/node-core-library': 4.0.2(@types/node@22.9.0)
'@rushstack/node-core-library': 4.0.2(@types/node@22.9.1)
supports-color: 8.1.1
optionalDependencies:
'@types/node': 22.9.0
'@types/node': 22.9.1
'@rushstack/ts-command-line@4.19.1(@types/node@22.9.0)':
'@rushstack/ts-command-line@4.19.1(@types/node@22.9.1)':
dependencies:
'@rushstack/terminal': 0.10.0(@types/node@22.9.0)
'@rushstack/terminal': 0.10.0(@types/node@22.9.1)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
@@ -4106,7 +4178,7 @@ snapshots:
'@tabler/icons@3.22.0': {}
'@tanstack/config@0.7.13(@types/node@22.9.0)(esbuild@0.21.5)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))':
'@tanstack/config@0.7.13(@types/node@22.9.1)(esbuild@0.21.5)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))':
dependencies:
'@commitlint/parse': 19.5.0
commander: 12.1.0
@@ -4120,9 +4192,9 @@ snapshots:
semver: 7.6.3
simple-git: 3.27.0
v8flags: 4.0.1
vite-plugin-dts: 3.9.1(@types/node@22.9.0)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))
vite-plugin-externalize-deps: 0.8.0(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))
vite-tsconfig-paths: 4.3.2(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))
vite-plugin-dts: 3.9.1(@types/node@22.9.1)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))
vite-plugin-externalize-deps: 0.8.0(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))
vite-tsconfig-paths: 4.3.2(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))
transitivePeerDependencies:
- '@types/node'
- esbuild
@@ -4199,7 +4271,7 @@ snapshots:
'@types/conventional-commits-parser@5.0.0':
dependencies:
'@types/node': 22.9.0
'@types/node': 22.9.1
'@types/debug@4.1.12':
dependencies:
@@ -4229,6 +4301,10 @@ snapshots:
dependencies:
undici-types: 6.19.8
'@types/node@22.9.1':
dependencies:
undici-types: 6.19.8
'@types/prop-types@15.7.13': {}
'@types/react-dom@18.3.1':
@@ -4335,14 +4411,21 @@ snapshots:
transitivePeerDependencies:
- '@swc/helpers'
'@vitejs/plugin-react@4.3.3(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))':
'@vitejs/plugin-react-swc@3.7.1(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))':
dependencies:
'@swc/core': 1.9.2
vite: 5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
transitivePeerDependencies:
- '@swc/helpers'
'@vitejs/plugin-react@4.3.3(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))':
dependencies:
'@babel/core': 7.26.0
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
vite: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
vite: 5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
transitivePeerDependencies:
- supports-color
@@ -4353,13 +4436,13 @@ snapshots:
chai: 5.1.2
tinyrainbow: 1.2.0
'@vitest/mocker@2.1.5(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))':
'@vitest/mocker@2.1.5(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))':
dependencies:
'@vitest/spy': 2.1.5
estree-walker: 3.0.3
magic-string: 0.30.12
optionalDependencies:
vite: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
vite: 5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
'@vitest/pretty-format@2.1.5':
dependencies:
@@ -7040,13 +7123,13 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
vite-node@2.1.5(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)):
vite-node@2.1.5(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)):
dependencies:
cac: 6.7.14
debug: 4.3.7
es-module-lexer: 1.5.4
pathe: 1.1.2
vite: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
vite: 5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
transitivePeerDependencies:
- '@types/node'
- less
@@ -7058,9 +7141,9 @@ snapshots:
- supports-color
- terser
vite-plugin-dts@3.9.1(@types/node@22.9.0)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))):
vite-plugin-dts@3.9.1(@types/node@22.9.1)(rollup@4.25.0)(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))):
dependencies:
'@microsoft/api-extractor': 7.43.0(@types/node@22.9.0)
'@microsoft/api-extractor': 7.43.0(@types/node@22.9.1)
'@rollup/pluginutils': 5.1.3(rollup@4.25.0)
'@vue/language-core': 1.8.27(typescript@5.6.3)
debug: 4.3.7
@@ -7069,23 +7152,23 @@ snapshots:
typescript: 5.6.3
vue-tsc: 1.8.27(typescript@5.6.3)
optionalDependencies:
vite: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
vite: 5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
vite-plugin-externalize-deps@0.8.0(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))):
vite-plugin-externalize-deps@0.8.0(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))):
dependencies:
vite: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
vite: 5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
vite-tsconfig-paths@4.3.2(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))):
vite-tsconfig-paths@4.3.2(typescript@5.6.3)(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))):
dependencies:
debug: 4.3.7
globrex: 0.1.2
tsconfck: 3.1.4(typescript@5.6.3)
optionalDependencies:
vite: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
vite: 5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
transitivePeerDependencies:
- supports-color
- typescript
@@ -7100,10 +7183,20 @@ snapshots:
fsevents: 2.3.3
sugarss: 4.0.1(postcss@8.4.49)
vitest@2.1.5(@types/node@22.9.0)(jsdom@25.0.1)(sugarss@4.0.1(postcss@8.4.49)):
vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)):
dependencies:
esbuild: 0.21.5
postcss: 8.4.49
rollup: 4.25.0
optionalDependencies:
'@types/node': 22.9.1
fsevents: 2.3.3
sugarss: 4.0.1(postcss@8.4.49)
vitest@2.1.5(@types/node@22.9.1)(jsdom@25.0.1)(sugarss@4.0.1(postcss@8.4.49)):
dependencies:
'@vitest/expect': 2.1.5
'@vitest/mocker': 2.1.5(vite@5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49)))
'@vitest/mocker': 2.1.5(vite@5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49)))
'@vitest/pretty-format': 2.1.5
'@vitest/runner': 2.1.5
'@vitest/snapshot': 2.1.5
@@ -7119,11 +7212,11 @@ snapshots:
tinyexec: 0.3.1
tinypool: 1.0.2
tinyrainbow: 1.2.0
vite: 5.4.11(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
vite-node: 2.1.5(@types/node@22.9.0)(sugarss@4.0.1(postcss@8.4.49))
vite: 5.4.11(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
vite-node: 2.1.5(@types/node@22.9.1)(sugarss@4.0.1(postcss@8.4.49))
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 22.9.0
'@types/node': 22.9.1
jsdom: 25.0.1
transitivePeerDependencies:
- less
+1 -1
View File
@@ -1,4 +1,4 @@
packages:
- 'packages/*'
- 'apps/*'
- '!**/examples/**'
- 'examples/*'