mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-06-18 14:40:07 +02:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 13e6268448 | |||
| 7a605d402b | |||
| 18635c2200 | |||
| cdae07afe6 |
@@ -53,7 +53,7 @@
|
||||
"updater",
|
||||
"window"
|
||||
],
|
||||
"postversion": "pnpm install --no-frozen-lockfile"
|
||||
"postversion": "pnpm install"
|
||||
},
|
||||
"api-example-js": {
|
||||
"path": "./examples/api",
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"os-js": "patch"
|
||||
---
|
||||
|
||||
Fix `macss -> macos` typo in `OsType` type.
|
||||
@@ -8,11 +8,9 @@
|
||||
".changes/fs-wiret-binary-file.md",
|
||||
".changes/http-multipart-refactor.md",
|
||||
".changes/http-plugin-refactor.md",
|
||||
".changes/http-response.md",
|
||||
".changes/notification-init-script.md",
|
||||
".changes/notification-revert-sound.md",
|
||||
".changes/notification-sound.md",
|
||||
".changes/os-OsType.md",
|
||||
".changes/os-plugin-refactor.md",
|
||||
".changes/persisted-scope-asset.md",
|
||||
".changes/persisted-scope-glob.md",
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"window-js": "minor"
|
||||
---
|
||||
|
||||
Add position information to file drop events.
|
||||
Generated
+2
-2
@@ -230,7 +230,7 @@ checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854"
|
||||
|
||||
[[package]]
|
||||
name = "api"
|
||||
version = "2.0.0-alpha.3"
|
||||
version = "2.0.0-alpha.2"
|
||||
dependencies = [
|
||||
"log",
|
||||
"serde",
|
||||
@@ -5724,7 +5724,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "tauri-plugin-http"
|
||||
version = "2.0.0-alpha.2"
|
||||
version = "2.0.0-alpha.1"
|
||||
dependencies = [
|
||||
"data-url",
|
||||
"glob",
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ resolver = "2"
|
||||
[workspace.dependencies]
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
log = "0.4"
|
||||
tauri = "2.0.0-alpha.11"
|
||||
tauri = "2.0.0-alpha.12"
|
||||
tauri-build = "2.0.0-alpha.8"
|
||||
serde_json = "1"
|
||||
thiserror = "1"
|
||||
|
||||
@@ -1,11 +1,5 @@
|
||||
# Changelog
|
||||
|
||||
## \[2.0.0-alpha.2]
|
||||
|
||||
### Dependencies
|
||||
|
||||
- Upgraded to `os-js@2.0.0-alpha.2`
|
||||
|
||||
## \[2.0.0-alpha.1]
|
||||
|
||||
### Dependencies
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "svelte-app",
|
||||
"private": true,
|
||||
"version": "2.0.0-alpha.2",
|
||||
"version": "2.0.0-alpha.1",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite --clearScreen false",
|
||||
@@ -18,7 +18,7 @@
|
||||
"@tauri-apps/plugin-global-shortcut": "2.0.0-alpha.1",
|
||||
"@tauri-apps/plugin-http": "2.0.0-alpha.1",
|
||||
"@tauri-apps/plugin-notification": "2.0.0-alpha.1",
|
||||
"@tauri-apps/plugin-os": "2.0.0-alpha.2",
|
||||
"@tauri-apps/plugin-os": "2.0.0-alpha.1",
|
||||
"@tauri-apps/plugin-process": "2.0.0-alpha.1",
|
||||
"@tauri-apps/plugin-shell": "2.0.0-alpha.1",
|
||||
"@tauri-apps/plugin-updater": "2.0.0-alpha.1",
|
||||
|
||||
@@ -1,11 +1,5 @@
|
||||
# Changelog
|
||||
|
||||
## \[2.0.0-alpha.3]
|
||||
|
||||
### Dependencies
|
||||
|
||||
- Upgraded to `http@2.0.0-alpha.2`
|
||||
|
||||
## \[2.0.0-alpha.2]
|
||||
|
||||
### Dependencies
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "api"
|
||||
publish = false
|
||||
version = "2.0.0-alpha.3"
|
||||
version = "2.0.0-alpha.2"
|
||||
description = "An example Tauri Application showcasing the api"
|
||||
edition = "2021"
|
||||
rust-version = { workspace = true }
|
||||
@@ -23,7 +23,7 @@ tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-alpha.1" }
|
||||
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-alpha.1" }
|
||||
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.0.0-alpha.0" }
|
||||
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-alpha.1" }
|
||||
tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-alpha.2" }
|
||||
tauri-plugin-http = { path = "../../../plugins/http", features = [ "multipart" ], version = "2.0.0-alpha.1" }
|
||||
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-alpha.2", features = [ "windows7-compat" ] }
|
||||
tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-alpha.1" }
|
||||
tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-alpha.1" }
|
||||
|
||||
+2
-2
@@ -6,8 +6,8 @@
|
||||
"scripts": {
|
||||
"build": "pnpm run -r --parallel --filter !plugins-workspace --filter !\"./plugins/*/examples/**\" --filter !\"./examples/*\" build",
|
||||
"lint": "eslint .",
|
||||
"format": "prettier --write \"./**/*.{cjs,mjs,js,jsx,mts,ts,tsx,html,css,json}\" --ignore-path .prettierignore",
|
||||
"format-check": "prettier --check \"./**/*.{cjs,mjs,js,jsx,mts,ts,tsx,html,css,json}\" --ignore-path .prettierignore"
|
||||
"format": "prettier --write .",
|
||||
"format-check": "prettier --check ."
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-node-resolve": "15.1.0",
|
||||
|
||||
@@ -83,7 +83,7 @@ pub fn init<R: Runtime>() -> TauriPlugin<R, Option<Config>> {
|
||||
.on_event(|app, event| {
|
||||
if let RunEvent::WindowEvent {
|
||||
label: _,
|
||||
event: WindowEvent::FileDrop(FileDropEvent::Dropped(paths)),
|
||||
event: WindowEvent::FileDrop(FileDropEvent::Dropped { paths, .. }),
|
||||
..
|
||||
} = event
|
||||
{
|
||||
|
||||
@@ -1,9 +1,5 @@
|
||||
# Changelog
|
||||
|
||||
## \[2.0.0-alpha.2]
|
||||
|
||||
- [`aec17a9`](https://github.com/tauri-apps/plugins-workspace/commit/aec17a90fc365774c70c4876b94a899416120e26)([#558](https://github.com/tauri-apps/plugins-workspace/pull/558)) Improve response performance by using the new IPC streaming data.
|
||||
|
||||
## \[2.0.0-alpha.1]
|
||||
|
||||
- [`7d9df72`](https://github.com/tauri-apps/plugins-workspace/commit/7d9df7297a221a64d9de945ffc2cd8313d3104dc)([#428](https://github.com/tauri-apps/plugins-workspace/pull/428)) Multipart requests are now handled in JavaScript by the `Request` JavaScript class so you just need to use a `FormData` body and not set the content-type header to `multipart/form-data`. `application/x-www-form-urlencoded` requests must be done manually.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-plugin-http"
|
||||
version = "2.0.0-alpha.2"
|
||||
version = "2.0.0-alpha.1"
|
||||
description = "Access an HTTP client written in Rust."
|
||||
edition = { workspace = true }
|
||||
authors = { workspace = true }
|
||||
|
||||
@@ -1,9 +1,5 @@
|
||||
# Changelog
|
||||
|
||||
## \[2.0.0-alpha.2]
|
||||
|
||||
- [`e510f2f`](https://github.com/tauri-apps/plugins-workspace/commit/e510f2fe4c227c107a1faca9386b5ceb326611ed)([#561](https://github.com/tauri-apps/plugins-workspace/pull/561)) Fix `macss -> macos` typo in `OsType` type.
|
||||
|
||||
## \[2.0.0-alpha.1]
|
||||
|
||||
- [`1091d6d`](https://github.com/tauri-apps/plugins-workspace/commit/1091d6d6ac5081f2c7526b0f492ae4f34b306f1d)([#419](https://github.com/tauri-apps/plugins-workspace/pull/419)) The os plugin is recieving a few changes to improve consistency and add new features:
|
||||
@@ -18,7 +14,7 @@
|
||||
## \[2.0.0-alpha.0]
|
||||
|
||||
- [`717ae67`](https://github.com/tauri-apps/plugins-workspace/commit/717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
|
||||
te to alpha.11.
|
||||
te to alpha.11.
|
||||
|
||||
## \[2.0.0-alpha.0]
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@ type Platform =
|
||||
| "android"
|
||||
| "windows";
|
||||
|
||||
type OsType = "linux" | "windows" | "macos" | "ios" | "android";
|
||||
type OsType = "linux" | "windows" | "macss" | "ios" | "android";
|
||||
|
||||
type Arch =
|
||||
| "x86"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tauri-apps/plugin-os",
|
||||
"version": "2.0.0-alpha.2",
|
||||
"version": "2.0.0-alpha.1",
|
||||
"license": "MIT or APACHE-2.0",
|
||||
"authors": [
|
||||
"Tauri Programme within The Commons Conservancy"
|
||||
|
||||
@@ -63,8 +63,8 @@ interface ScaleFactorChanged {
|
||||
|
||||
/** The file drop event types. */
|
||||
type FileDropEvent =
|
||||
| { type: "hover"; paths: string[] }
|
||||
| { type: "drop"; paths: string[] }
|
||||
| { type: "hover"; paths: string[]; position: PhysicalPosition }
|
||||
| { type: "drop"; paths: string[]; position: PhysicalPosition }
|
||||
| { type: "cancel" };
|
||||
|
||||
/**
|
||||
@@ -1901,19 +1901,33 @@ class Window {
|
||||
async onFileDropEvent(
|
||||
handler: EventCallback<FileDropEvent>,
|
||||
): Promise<UnlistenFn> {
|
||||
const unlistenFileDrop = await this.listen<string[]>(
|
||||
TauriEvent.WINDOW_FILE_DROP,
|
||||
(event) => {
|
||||
handler({ ...event, payload: { type: "drop", paths: event.payload } });
|
||||
},
|
||||
);
|
||||
const unlistenFileDrop = await this.listen<{
|
||||
paths: string[];
|
||||
position: PhysicalPosition;
|
||||
}>(TauriEvent.WINDOW_FILE_DROP, (event) => {
|
||||
handler({
|
||||
...event,
|
||||
payload: {
|
||||
type: "drop",
|
||||
paths: event.payload.paths,
|
||||
position: mapPhysicalPosition(event.payload.position),
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
const unlistenFileHover = await this.listen<string[]>(
|
||||
TauriEvent.WINDOW_FILE_DROP_HOVER,
|
||||
(event) => {
|
||||
handler({ ...event, payload: { type: "hover", paths: event.payload } });
|
||||
},
|
||||
);
|
||||
const unlistenFileHover = await this.listen<{
|
||||
paths: string[];
|
||||
position: PhysicalPosition;
|
||||
}>(TauriEvent.WINDOW_FILE_DROP_HOVER, (event) => {
|
||||
handler({
|
||||
...event,
|
||||
payload: {
|
||||
type: "hover",
|
||||
paths: event.payload.paths,
|
||||
position: mapPhysicalPosition(event.payload.position),
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
const unlistenCancel = await this.listen<null>(
|
||||
TauriEvent.WINDOW_FILE_DROP_CANCELLED,
|
||||
|
||||
File diff suppressed because one or more lines are too long
Generated
+28
-66
@@ -91,7 +91,7 @@ importers:
|
||||
specifier: 2.0.0-alpha.1
|
||||
version: link:../../plugins/notification
|
||||
'@tauri-apps/plugin-os':
|
||||
specifier: 2.0.0-alpha.2
|
||||
specifier: 2.0.0-alpha.1
|
||||
version: link:../../plugins/os
|
||||
'@tauri-apps/plugin-process':
|
||||
specifier: 2.0.0-alpha.1
|
||||
@@ -132,7 +132,7 @@ importers:
|
||||
version: 3.59.1
|
||||
unocss:
|
||||
specifier: ^0.53.1
|
||||
version: 0.53.1(postcss@8.4.26)(vite@4.4.4)
|
||||
version: 0.53.1(postcss@8.4.26)(rollup@3.26.3)(vite@4.4.4)
|
||||
vite:
|
||||
specifier: ^4.3.9
|
||||
version: 4.4.4
|
||||
@@ -548,7 +548,7 @@ packages:
|
||||
peerDependencies:
|
||||
mocha: ^10.0.0
|
||||
dependencies:
|
||||
effection: 2.0.7
|
||||
effection: 2.0.7(mocha@10.2.0)
|
||||
mocha: 10.2.0
|
||||
dev: true
|
||||
|
||||
@@ -795,7 +795,7 @@ packages:
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
dependencies:
|
||||
ajv: 6.12.6
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
espree: 9.6.1
|
||||
globals: 13.20.0
|
||||
ignore: 5.2.4
|
||||
@@ -817,7 +817,7 @@ packages:
|
||||
engines: {node: '>=10.10.0'}
|
||||
dependencies:
|
||||
'@humanwhocodes/object-schema': 1.2.1
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
minimatch: 3.1.2
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@@ -858,7 +858,7 @@ packages:
|
||||
'@antfu/install-pkg': 0.1.1
|
||||
'@antfu/utils': 0.7.5
|
||||
'@iconify/types': 2.0.0
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
kolorist: 1.8.0
|
||||
local-pkg: 0.4.3
|
||||
transitivePeerDependencies:
|
||||
@@ -983,20 +983,6 @@ packages:
|
||||
typescript: 5.1.6
|
||||
dev: true
|
||||
|
||||
/@rollup/pluginutils@5.0.2:
|
||||
resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
|
||||
engines: {node: '>=14.0.0'}
|
||||
peerDependencies:
|
||||
rollup: ^1.20.0||^2.0.0||^3.0.0
|
||||
peerDependenciesMeta:
|
||||
rollup:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@types/estree': 1.0.1
|
||||
estree-walker: 2.0.2
|
||||
picomatch: 2.3.1
|
||||
dev: true
|
||||
|
||||
/@rollup/pluginutils@5.0.2(rollup@3.26.3):
|
||||
resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
|
||||
engines: {node: '>=14.0.0'}
|
||||
@@ -1057,7 +1043,7 @@ packages:
|
||||
vite: ^4.0.0
|
||||
dependencies:
|
||||
'@sveltejs/vite-plugin-svelte': 2.4.1(svelte@3.59.1)(vite@4.4.4)
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
svelte: 3.59.1
|
||||
vite: 4.4.4
|
||||
transitivePeerDependencies:
|
||||
@@ -1073,7 +1059,7 @@ packages:
|
||||
vite: ^4.0.0
|
||||
dependencies:
|
||||
'@sveltejs/vite-plugin-svelte': 2.4.2(svelte@4.0.5)(vite@4.4.4)
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
svelte: 4.0.5
|
||||
vite: 4.4.4
|
||||
transitivePeerDependencies:
|
||||
@@ -1088,7 +1074,7 @@ packages:
|
||||
vite: ^4.0.0
|
||||
dependencies:
|
||||
'@sveltejs/vite-plugin-svelte-inspector': 1.0.3(@sveltejs/vite-plugin-svelte@2.4.1)(svelte@3.59.1)(vite@4.4.4)
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
deepmerge: 4.3.1
|
||||
kleur: 4.1.5
|
||||
magic-string: 0.30.1
|
||||
@@ -1108,7 +1094,7 @@ packages:
|
||||
vite: ^4.0.0
|
||||
dependencies:
|
||||
'@sveltejs/vite-plugin-svelte-inspector': 1.0.3(@sveltejs/vite-plugin-svelte@2.4.2)(svelte@4.0.5)(vite@4.4.4)
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
deepmerge: 4.3.1
|
||||
kleur: 4.1.5
|
||||
magic-string: 0.30.1
|
||||
@@ -1291,7 +1277,7 @@ packages:
|
||||
'@typescript-eslint/type-utils': 6.1.0(eslint@8.45.0)(typescript@5.1.6)
|
||||
'@typescript-eslint/utils': 6.1.0(eslint@8.45.0)(typescript@5.1.6)
|
||||
'@typescript-eslint/visitor-keys': 6.1.0
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
eslint: 8.45.0
|
||||
graphemer: 1.4.0
|
||||
ignore: 5.2.4
|
||||
@@ -1317,7 +1303,7 @@ packages:
|
||||
'@typescript-eslint/scope-manager': 5.62.0
|
||||
'@typescript-eslint/types': 5.62.0
|
||||
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6)
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
eslint: 8.45.0
|
||||
typescript: 5.1.6
|
||||
transitivePeerDependencies:
|
||||
@@ -1338,7 +1324,7 @@ packages:
|
||||
'@typescript-eslint/types': 6.1.0
|
||||
'@typescript-eslint/typescript-estree': 6.1.0(typescript@5.1.6)
|
||||
'@typescript-eslint/visitor-keys': 6.1.0
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
eslint: 8.45.0
|
||||
typescript: 5.1.6
|
||||
transitivePeerDependencies:
|
||||
@@ -1373,7 +1359,7 @@ packages:
|
||||
dependencies:
|
||||
'@typescript-eslint/typescript-estree': 6.1.0(typescript@5.1.6)
|
||||
'@typescript-eslint/utils': 6.1.0(eslint@8.45.0)(typescript@5.1.6)
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
eslint: 8.45.0
|
||||
ts-api-utils: 1.0.1(typescript@5.1.6)
|
||||
typescript: 5.1.6
|
||||
@@ -1402,7 +1388,7 @@ packages:
|
||||
dependencies:
|
||||
'@typescript-eslint/types': 5.62.0
|
||||
'@typescript-eslint/visitor-keys': 5.62.0
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
globby: 11.1.0
|
||||
is-glob: 4.0.3
|
||||
semver: 7.5.4
|
||||
@@ -1423,7 +1409,7 @@ packages:
|
||||
dependencies:
|
||||
'@typescript-eslint/types': 6.1.0
|
||||
'@typescript-eslint/visitor-keys': 6.1.0
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
globby: 11.1.0
|
||||
is-glob: 4.0.3
|
||||
semver: 7.5.4
|
||||
@@ -1468,24 +1454,24 @@ packages:
|
||||
eslint-visitor-keys: 3.4.1
|
||||
dev: true
|
||||
|
||||
/@unocss/astro@0.53.1(vite@4.4.4):
|
||||
/@unocss/astro@0.53.1(rollup@3.26.3)(vite@4.4.4):
|
||||
resolution: {integrity: sha512-dvPH2buCL0qvWXFfQFUeB8kbbJsliN0ib2Am5/1r4XyOwCiCvfwc3UuQpsi0xJs/WO9QgIxLWxakxVj3DeAuAQ==}
|
||||
dependencies:
|
||||
'@unocss/core': 0.53.1
|
||||
'@unocss/reset': 0.53.1
|
||||
'@unocss/vite': 0.53.1(vite@4.4.4)
|
||||
'@unocss/vite': 0.53.1(rollup@3.26.3)(vite@4.4.4)
|
||||
transitivePeerDependencies:
|
||||
- rollup
|
||||
- vite
|
||||
dev: true
|
||||
|
||||
/@unocss/cli@0.53.1:
|
||||
/@unocss/cli@0.53.1(rollup@3.26.3):
|
||||
resolution: {integrity: sha512-K2r8eBtwv1oQ6KcDLb3KyIDaApVle3zbckZmd7W402/IRIJSKScLjxWHtEJpnYEyuxD5MlQpfRZLZgmWWVMOsg==}
|
||||
engines: {node: '>=14'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
'@ampproject/remapping': 2.2.1
|
||||
'@rollup/pluginutils': 5.0.2
|
||||
'@rollup/pluginutils': 5.0.2(rollup@3.26.3)
|
||||
'@unocss/config': 0.53.1
|
||||
'@unocss/core': 0.53.1
|
||||
'@unocss/preset-uno': 0.53.1
|
||||
@@ -1641,13 +1627,13 @@ packages:
|
||||
'@unocss/core': 0.53.1
|
||||
dev: true
|
||||
|
||||
/@unocss/vite@0.53.1(vite@4.4.4):
|
||||
/@unocss/vite@0.53.1(rollup@3.26.3)(vite@4.4.4):
|
||||
resolution: {integrity: sha512-/N/rjiFyj1ejK1ZQIv9N/NMsNE6i2/V8ISwYhbGxLpc3Sca4jeVjZPsx5cg5DN9Ddas2BRH3YhLhdh8rPUPzxQ==}
|
||||
peerDependencies:
|
||||
vite: ^2.9.0 || ^3.0.0-0 || ^4.0.0
|
||||
dependencies:
|
||||
'@ampproject/remapping': 2.2.1
|
||||
'@rollup/pluginutils': 5.0.2
|
||||
'@rollup/pluginutils': 5.0.2(rollup@3.26.3)
|
||||
'@unocss/config': 0.53.1
|
||||
'@unocss/core': 0.53.1
|
||||
'@unocss/inspector': 0.53.1
|
||||
@@ -2113,18 +2099,6 @@ packages:
|
||||
ms: 2.1.3
|
||||
dev: true
|
||||
|
||||
/debug@4.3.4:
|
||||
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
|
||||
engines: {node: '>=6.0'}
|
||||
peerDependencies:
|
||||
supports-color: '*'
|
||||
peerDependenciesMeta:
|
||||
supports-color:
|
||||
optional: true
|
||||
dependencies:
|
||||
ms: 2.1.2
|
||||
dev: true
|
||||
|
||||
/debug@4.3.4(supports-color@8.1.1):
|
||||
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
|
||||
engines: {node: '>=6.0'}
|
||||
@@ -2225,18 +2199,6 @@ packages:
|
||||
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
|
||||
dev: true
|
||||
|
||||
/effection@2.0.7:
|
||||
resolution: {integrity: sha512-I9ndFvtByvHbvOHwMp1NM7vlLDT0RBOu1YlIfBece46VASSot0oPnAfoGdc1YKoQShQLjigvHZ6OqZYUAxUcXg==}
|
||||
dependencies:
|
||||
'@effection/channel': 2.0.5
|
||||
'@effection/core': 2.2.2
|
||||
'@effection/events': 2.0.5
|
||||
'@effection/fetch': 2.0.6(mocha@10.2.0)
|
||||
'@effection/main': 2.1.2
|
||||
'@effection/stream': 2.0.5
|
||||
'@effection/subscription': 2.0.5
|
||||
dev: true
|
||||
|
||||
/effection@2.0.7(mocha@10.2.0):
|
||||
resolution: {integrity: sha512-I9ndFvtByvHbvOHwMp1NM7vlLDT0RBOu1YlIfBece46VASSot0oPnAfoGdc1YKoQShQLjigvHZ6OqZYUAxUcXg==}
|
||||
dependencies:
|
||||
@@ -2563,7 +2525,7 @@ packages:
|
||||
ajv: 6.12.6
|
||||
chalk: 4.1.2
|
||||
cross-spawn: 7.0.3
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
doctrine: 3.0.0
|
||||
escape-string-regexp: 4.0.0
|
||||
eslint-scope: 7.2.1
|
||||
@@ -3444,7 +3406,7 @@ packages:
|
||||
/micromark@2.11.4:
|
||||
resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==}
|
||||
dependencies:
|
||||
debug: 4.3.4
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
parse-entities: 2.0.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@@ -4535,7 +4497,7 @@ packages:
|
||||
'@types/unist': 2.0.7
|
||||
dev: true
|
||||
|
||||
/unocss@0.53.1(postcss@8.4.26)(vite@4.4.4):
|
||||
/unocss@0.53.1(postcss@8.4.26)(rollup@3.26.3)(vite@4.4.4):
|
||||
resolution: {integrity: sha512-0lRblA8hX7VUu5dywbcStzm590Iz5ahSJGsMNKNH3+u9C7AfJcKT8epxjkIkJWQBNJLD5vsao4SuuhLWB7eMQQ==}
|
||||
engines: {node: '>=14'}
|
||||
peerDependencies:
|
||||
@@ -4544,8 +4506,8 @@ packages:
|
||||
'@unocss/webpack':
|
||||
optional: true
|
||||
dependencies:
|
||||
'@unocss/astro': 0.53.1(vite@4.4.4)
|
||||
'@unocss/cli': 0.53.1
|
||||
'@unocss/astro': 0.53.1(rollup@3.26.3)(vite@4.4.4)
|
||||
'@unocss/cli': 0.53.1(rollup@3.26.3)
|
||||
'@unocss/core': 0.53.1
|
||||
'@unocss/extractor-arbitrary-variants': 0.53.1
|
||||
'@unocss/postcss': 0.53.1(postcss@8.4.26)
|
||||
@@ -4563,7 +4525,7 @@ packages:
|
||||
'@unocss/transformer-compile-class': 0.53.1
|
||||
'@unocss/transformer-directives': 0.53.1
|
||||
'@unocss/transformer-variant-group': 0.53.1
|
||||
'@unocss/vite': 0.53.1(vite@4.4.4)
|
||||
'@unocss/vite': 0.53.1(rollup@3.26.3)(vite@4.4.4)
|
||||
transitivePeerDependencies:
|
||||
- postcss
|
||||
- rollup
|
||||
|
||||
Reference in New Issue
Block a user