From ce8851a057475e2d8eb20b6c4bfa15642b3b1bae Mon Sep 17 00:00:00 2001
From: ice breaker <1324318532@qq.com>
Date: Sun, 9 Feb 2025 00:29:43 +0800
Subject: [PATCH] feat: add weapp-tailwindcss style
---
apps/vite-native-skyline/package.json | 2 +-
apps/vite-native-ts-skyline/package.json | 2 +-
apps/vite-native-ts/package.json | 2 +-
apps/vite-native/app.css | 5 +-
apps/vite-native/app.json | 2 +-
.../navigation-bar/navigation-bar.json | 5 -
.../navigation-bar/navigation-bar.ts | 106 --
.../navigation-bar/navigation-bar.wxml | 64 -
.../navigation-bar/navigation-bar.wxss | 0
apps/vite-native/package.json | 4 +-
apps/vite-native/pages/index/index.wxml | 31 +-
packages/weapp-tailwindcss/index.css | 5 +
packages/weapp-tailwindcss/package.json | 19 +-
packages/weapp-tailwindcss/preflight.css | 16 +
packages/weapp-tailwindcss/theme.css | 450 +++++++
packages/weapp-tailwindcss/utilities.css | 1 +
pnpm-lock.yaml | 1076 +++++++----------
stylelint.config.js | 5 +-
18 files changed, 923 insertions(+), 872 deletions(-)
delete mode 100644 apps/vite-native/components/navigation-bar/navigation-bar.json
delete mode 100644 apps/vite-native/components/navigation-bar/navigation-bar.ts
delete mode 100644 apps/vite-native/components/navigation-bar/navigation-bar.wxml
delete mode 100644 apps/vite-native/components/navigation-bar/navigation-bar.wxss
create mode 100644 packages/weapp-tailwindcss/index.css
create mode 100644 packages/weapp-tailwindcss/preflight.css
create mode 100644 packages/weapp-tailwindcss/theme.css
create mode 100644 packages/weapp-tailwindcss/utilities.css
diff --git a/apps/vite-native-skyline/package.json b/apps/vite-native-skyline/package.json
index 5abf811da..9e346145c 100644
--- a/apps/vite-native-skyline/package.json
+++ b/apps/vite-native-skyline/package.json
@@ -31,6 +31,6 @@
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"weapp-tailwindcss": "workspace:*",
- "weapp-vite": "^2.1.2"
+ "weapp-vite": "^2.1.3"
}
}
diff --git a/apps/vite-native-ts-skyline/package.json b/apps/vite-native-ts-skyline/package.json
index d0768e4ec..207fb1628 100644
--- a/apps/vite-native-ts-skyline/package.json
+++ b/apps/vite-native-ts-skyline/package.json
@@ -30,6 +30,6 @@
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"weapp-tailwindcss": "workspace:*",
- "weapp-vite": "^2.1.2"
+ "weapp-vite": "^2.1.3"
}
}
diff --git a/apps/vite-native-ts/package.json b/apps/vite-native-ts/package.json
index 54d9a280e..1c3fc41fa 100644
--- a/apps/vite-native-ts/package.json
+++ b/apps/vite-native-ts/package.json
@@ -34,6 +34,6 @@
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"weapp-tailwindcss": "workspace:*",
- "weapp-vite": "^2.1.2"
+ "weapp-vite": "^2.1.3"
}
}
diff --git a/apps/vite-native/app.css b/apps/vite-native/app.css
index a366e6503..0ef08f305 100644
--- a/apps/vite-native/app.css
+++ b/apps/vite-native/app.css
@@ -1,5 +1,8 @@
/* @import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities'; */
-@import 'tailwindcss';
+
+/* @import 'tailwindcss'; */
+
+@import 'weapp-tailwindcss';
@config "./tailwind.config.js";
diff --git a/apps/vite-native/app.json b/apps/vite-native/app.json
index 74ad1b6f6..11383e3e6 100644
--- a/apps/vite-native/app.json
+++ b/apps/vite-native/app.json
@@ -8,7 +8,7 @@
"navigationBarBackgroundColor": "#ffffff"
},
"usingComponents": {
- "navigation-bar": "/components/navigation-bar/navigation-bar"
+
},
"subPackages": [
{
diff --git a/apps/vite-native/components/navigation-bar/navigation-bar.json b/apps/vite-native/components/navigation-bar/navigation-bar.json
deleted file mode 100644
index 4f0a3f08c..000000000
--- a/apps/vite-native/components/navigation-bar/navigation-bar.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "component": true,
- "styleIsolation": "apply-shared",
- "usingComponents": {}
-}
diff --git a/apps/vite-native/components/navigation-bar/navigation-bar.ts b/apps/vite-native/components/navigation-bar/navigation-bar.ts
deleted file mode 100644
index 046495744..000000000
--- a/apps/vite-native/components/navigation-bar/navigation-bar.ts
+++ /dev/null
@@ -1,106 +0,0 @@
-Component({
- options: {
- multipleSlots: true, // 在组件定义时的选项中启用多slot支持
- },
- /**
- * 组件的属性列表
- */
- properties: {
- extClass: {
- type: String,
- value: '',
- },
- title: {
- type: String,
- value: '',
- },
- background: {
- type: String,
- value: '',
- },
- color: {
- type: String,
- value: '',
- },
- back: {
- type: Boolean,
- value: true,
- },
- loading: {
- type: Boolean,
- value: false,
- },
- homeButton: {
- type: Boolean,
- value: false,
- },
- animated: {
- // 显示隐藏的时候opacity动画效果
- type: Boolean,
- value: true,
- },
- show: {
- // 显示隐藏导航,隐藏的时候navigation-bar的高度占位还在
- type: Boolean,
- value: true,
- observer: '_showChange',
- },
- // back为true的时候,返回的页面深度
- delta: {
- type: Number,
- value: 1,
- },
- },
- /**
- * 组件的初始数据
- */
- data: {
- displayStyle: '',
- },
- lifetimes: {
- attached() {
- const rect = wx.getMenuButtonBoundingClientRect()
- wx.getSystemInfo({
- success: (res) => {
- const isAndroid = res.platform === 'android'
- const isDevtools = res.platform === 'devtools'
- this.setData({
- ios: !isAndroid,
- innerPaddingRight: `padding-right: ${res.windowWidth - rect.left}px`,
- leftWidth: `width: ${res.windowWidth - rect.left}px`,
- safeAreaTop: isDevtools || isAndroid ? `height: calc(var(--height) + ${res.safeArea.top}px); padding-top: ${res.safeArea.top}px` : ``,
- })
- },
- })
- },
- },
- /**
- * 组件的方法列表
- */
- methods: {
- _showChange(show: boolean) {
- const animated = this.data.animated
- let displayStyle = ''
- if (animated) {
- displayStyle = `opacity: ${
- show ? '1' : '0'
- };transition:opacity 0.5s;`
- }
- else {
- displayStyle = `display: ${show ? '' : 'none'}`
- }
- this.setData({
- displayStyle,
- })
- },
- back() {
- const data = this.data
- if (data.delta) {
- wx.navigateBack({
- delta: data.delta,
- })
- }
- this.triggerEvent('back', { delta: data.delta }, {})
- },
- },
-})
diff --git a/apps/vite-native/components/navigation-bar/navigation-bar.wxml b/apps/vite-native/components/navigation-bar/navigation-bar.wxml
deleted file mode 100644
index fb86b3c31..000000000
--- a/apps/vite-native/components/navigation-bar/navigation-bar.wxml
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-1111
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{title}}
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/apps/vite-native/components/navigation-bar/navigation-bar.wxss b/apps/vite-native/components/navigation-bar/navigation-bar.wxss
deleted file mode 100644
index e69de29bb..000000000
diff --git a/apps/vite-native/package.json b/apps/vite-native/package.json
index 5000c9b9a..ce5e3d627 100644
--- a/apps/vite-native/package.json
+++ b/apps/vite-native/package.json
@@ -34,9 +34,9 @@
"@tailwindcss/vite": "^4.0.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.1",
- "tailwindcss": "^4.0.3",
+ "tailwindcss": "^4.0.4",
"tailwindcss-injector": "workspace:*",
"weapp-tailwindcss": "workspace:*",
- "weapp-vite": "^2.1.2"
+ "weapp-vite": "^2.1.3"
}
}
diff --git a/apps/vite-native/pages/index/index.wxml b/apps/vite-native/pages/index/index.wxml
index c5a111d8c..0277b9bb4 100644
--- a/apps/vite-native/pages/index/index.wxml
+++ b/apps/vite-native/pages/index/index.wxml
@@ -1,33 +1,4 @@
-
-
- FirstName: {{firstName}}, LastName: {{lastName}}
-
-
- {{ motto }}
111
- {{message}}
- {{item}}
-
-
-
- {{m1.message}}
-
- Click me!
+ 222
-
- odd
-
-
- even
-
-
-
-
-
-
-
-var msg = "hello world";
-
-module.exports.message = msg;
-
\ No newline at end of file
diff --git a/packages/weapp-tailwindcss/index.css b/packages/weapp-tailwindcss/index.css
new file mode 100644
index 000000000..1f5f16181
--- /dev/null
+++ b/packages/weapp-tailwindcss/index.css
@@ -0,0 +1,5 @@
+@layer theme, base, components, utilities;
+
+@import './theme.css' layer(theme);
+@import './preflight.css' layer(base);
+@import './utilities.css' layer(utilities);
diff --git a/packages/weapp-tailwindcss/package.json b/packages/weapp-tailwindcss/package.json
index dbb6079d8..3f360377f 100644
--- a/packages/weapp-tailwindcss/package.json
+++ b/packages/weapp-tailwindcss/package.json
@@ -43,7 +43,8 @@
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
- "require": "./dist/index.js"
+ "require": "./dist/index.js",
+ "style": "./index.css"
},
"./escape": {
"types": "./dist/escape.d.ts",
@@ -95,11 +96,21 @@
"import": "./dist/types.mjs",
"require": "./dist/types.js"
},
+ "./package.json": "./package.json",
+ "./index.css": "./index.css",
+ "./index": "./index.css",
+ "./preflight.css": "./preflight.css",
+ "./preflight": "./preflight.css",
+ "./theme.css": "./theme.css",
+ "./theme": "./theme.css",
+ "./utilities.css": "./utilities.css",
+ "./utilities": "./utilities.css",
"./*": "./*"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
+ "style": "index.css",
"typesVersions": {
"*": {
"*": [
@@ -115,7 +126,11 @@
},
"files": [
"bin",
- "dist"
+ "dist",
+ "index.css",
+ "preflight.css",
+ "theme.css",
+ "utilities.css"
],
"engines": {
"node": "^18.17.0 || >=20.5.0"
diff --git a/packages/weapp-tailwindcss/preflight.css b/packages/weapp-tailwindcss/preflight.css
new file mode 100644
index 000000000..97d90f0d6
--- /dev/null
+++ b/packages/weapp-tailwindcss/preflight.css
@@ -0,0 +1,16 @@
+/*
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
+ 2. Remove default margins and padding
+ 3. Reset all borders.
+*/
+
+*,
+::after,
+::before,
+::backdrop,
+::file-selector-button {
+ box-sizing: border-box; /* 1 */
+ margin: 0; /* 2 */
+ padding: 0; /* 2 */
+ border: 0 solid; /* 3 */
+}
diff --git a/packages/weapp-tailwindcss/theme.css b/packages/weapp-tailwindcss/theme.css
new file mode 100644
index 000000000..d9343e0f3
--- /dev/null
+++ b/packages/weapp-tailwindcss/theme.css
@@ -0,0 +1,450 @@
+@theme default {
+ --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
+ 'Noto Color Emoji';
+ --font-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
+
+ --color-red-50: oklch(0.971 0.013 17.38);
+ --color-red-100: oklch(0.936 0.032 17.717);
+ --color-red-200: oklch(0.885 0.062 18.334);
+ --color-red-300: oklch(0.808 0.114 19.571);
+ --color-red-400: oklch(0.704 0.191 22.216);
+ --color-red-500: oklch(0.637 0.237 25.331);
+ --color-red-600: oklch(0.577 0.245 27.325);
+ --color-red-700: oklch(0.505 0.213 27.518);
+ --color-red-800: oklch(0.444 0.177 26.899);
+ --color-red-900: oklch(0.396 0.141 25.723);
+ --color-red-950: oklch(0.258 0.092 26.042);
+
+ --color-orange-50: oklch(0.98 0.016 73.684);
+ --color-orange-100: oklch(0.954 0.038 75.164);
+ --color-orange-200: oklch(0.901 0.076 70.697);
+ --color-orange-300: oklch(0.837 0.128 66.29);
+ --color-orange-400: oklch(0.75 0.183 55.934);
+ --color-orange-500: oklch(0.705 0.213 47.604);
+ --color-orange-600: oklch(0.646 0.222 41.116);
+ --color-orange-700: oklch(0.553 0.195 38.402);
+ --color-orange-800: oklch(0.47 0.157 37.304);
+ --color-orange-900: oklch(0.408 0.123 38.172);
+ --color-orange-950: oklch(0.266 0.079 36.259);
+
+ --color-amber-50: oklch(0.987 0.022 95.277);
+ --color-amber-100: oklch(0.962 0.059 95.617);
+ --color-amber-200: oklch(0.924 0.12 95.746);
+ --color-amber-300: oklch(0.879 0.169 91.605);
+ --color-amber-400: oklch(0.828 0.189 84.429);
+ --color-amber-500: oklch(0.769 0.188 70.08);
+ --color-amber-600: oklch(0.666 0.179 58.318);
+ --color-amber-700: oklch(0.555 0.163 48.998);
+ --color-amber-800: oklch(0.473 0.137 46.201);
+ --color-amber-900: oklch(0.414 0.112 45.904);
+ --color-amber-950: oklch(0.279 0.077 45.635);
+
+ --color-yellow-50: oklch(0.987 0.026 102.212);
+ --color-yellow-100: oklch(0.973 0.071 103.193);
+ --color-yellow-200: oklch(0.945 0.129 101.54);
+ --color-yellow-300: oklch(0.905 0.182 98.111);
+ --color-yellow-400: oklch(0.852 0.199 91.936);
+ --color-yellow-500: oklch(0.795 0.184 86.047);
+ --color-yellow-600: oklch(0.681 0.162 75.834);
+ --color-yellow-700: oklch(0.554 0.135 66.442);
+ --color-yellow-800: oklch(0.476 0.114 61.907);
+ --color-yellow-900: oklch(0.421 0.095 57.708);
+ --color-yellow-950: oklch(0.286 0.066 53.813);
+
+ --color-lime-50: oklch(0.986 0.031 120.757);
+ --color-lime-100: oklch(0.967 0.067 122.328);
+ --color-lime-200: oklch(0.938 0.127 124.321);
+ --color-lime-300: oklch(0.897 0.196 126.665);
+ --color-lime-400: oklch(0.841 0.238 128.85);
+ --color-lime-500: oklch(0.768 0.233 130.85);
+ --color-lime-600: oklch(0.648 0.2 131.684);
+ --color-lime-700: oklch(0.532 0.157 131.589);
+ --color-lime-800: oklch(0.453 0.124 130.933);
+ --color-lime-900: oklch(0.405 0.101 131.063);
+ --color-lime-950: oklch(0.274 0.072 132.109);
+
+ --color-green-50: oklch(0.982 0.018 155.826);
+ --color-green-100: oklch(0.962 0.044 156.743);
+ --color-green-200: oklch(0.925 0.084 155.995);
+ --color-green-300: oklch(0.871 0.15 154.449);
+ --color-green-400: oklch(0.792 0.209 151.711);
+ --color-green-500: oklch(0.723 0.219 149.579);
+ --color-green-600: oklch(0.627 0.194 149.214);
+ --color-green-700: oklch(0.527 0.154 150.069);
+ --color-green-800: oklch(0.448 0.119 151.328);
+ --color-green-900: oklch(0.393 0.095 152.535);
+ --color-green-950: oklch(0.266 0.065 152.934);
+
+ --color-emerald-50: oklch(0.979 0.021 166.113);
+ --color-emerald-100: oklch(0.95 0.052 163.051);
+ --color-emerald-200: oklch(0.905 0.093 164.15);
+ --color-emerald-300: oklch(0.845 0.143 164.978);
+ --color-emerald-400: oklch(0.765 0.177 163.223);
+ --color-emerald-500: oklch(0.696 0.17 162.48);
+ --color-emerald-600: oklch(0.596 0.145 163.225);
+ --color-emerald-700: oklch(0.508 0.118 165.612);
+ --color-emerald-800: oklch(0.432 0.095 166.913);
+ --color-emerald-900: oklch(0.378 0.077 168.94);
+ --color-emerald-950: oklch(0.262 0.051 172.552);
+
+ --color-teal-50: oklch(0.984 0.014 180.72);
+ --color-teal-100: oklch(0.953 0.051 180.801);
+ --color-teal-200: oklch(0.91 0.096 180.426);
+ --color-teal-300: oklch(0.855 0.138 181.071);
+ --color-teal-400: oklch(0.777 0.152 181.912);
+ --color-teal-500: oklch(0.704 0.14 182.503);
+ --color-teal-600: oklch(0.6 0.118 184.704);
+ --color-teal-700: oklch(0.511 0.096 186.391);
+ --color-teal-800: oklch(0.437 0.078 188.216);
+ --color-teal-900: oklch(0.386 0.063 188.416);
+ --color-teal-950: oklch(0.277 0.046 192.524);
+
+ --color-cyan-50: oklch(0.984 0.019 200.873);
+ --color-cyan-100: oklch(0.956 0.045 203.388);
+ --color-cyan-200: oklch(0.917 0.08 205.041);
+ --color-cyan-300: oklch(0.865 0.127 207.078);
+ --color-cyan-400: oklch(0.789 0.154 211.53);
+ --color-cyan-500: oklch(0.715 0.143 215.221);
+ --color-cyan-600: oklch(0.609 0.126 221.723);
+ --color-cyan-700: oklch(0.52 0.105 223.128);
+ --color-cyan-800: oklch(0.45 0.085 224.283);
+ --color-cyan-900: oklch(0.398 0.07 227.392);
+ --color-cyan-950: oklch(0.302 0.056 229.695);
+
+ --color-sky-50: oklch(0.977 0.013 236.62);
+ --color-sky-100: oklch(0.951 0.026 236.824);
+ --color-sky-200: oklch(0.901 0.058 230.902);
+ --color-sky-300: oklch(0.828 0.111 230.318);
+ --color-sky-400: oklch(0.746 0.16 232.661);
+ --color-sky-500: oklch(0.685 0.169 237.323);
+ --color-sky-600: oklch(0.588 0.158 241.966);
+ --color-sky-700: oklch(0.5 0.134 242.749);
+ --color-sky-800: oklch(0.443 0.11 240.79);
+ --color-sky-900: oklch(0.391 0.09 240.876);
+ --color-sky-950: oklch(0.293 0.066 243.157);
+
+ --color-blue-50: oklch(0.97 0.014 254.604);
+ --color-blue-100: oklch(0.932 0.032 255.585);
+ --color-blue-200: oklch(0.882 0.059 254.128);
+ --color-blue-300: oklch(0.809 0.105 251.813);
+ --color-blue-400: oklch(0.707 0.165 254.624);
+ --color-blue-500: oklch(0.623 0.214 259.815);
+ --color-blue-600: oklch(0.546 0.245 262.881);
+ --color-blue-700: oklch(0.488 0.243 264.376);
+ --color-blue-800: oklch(0.424 0.199 265.638);
+ --color-blue-900: oklch(0.379 0.146 265.522);
+ --color-blue-950: oklch(0.282 0.091 267.935);
+
+ --color-indigo-50: oklch(0.962 0.018 272.314);
+ --color-indigo-100: oklch(0.93 0.034 272.788);
+ --color-indigo-200: oklch(0.87 0.065 274.039);
+ --color-indigo-300: oklch(0.785 0.115 274.713);
+ --color-indigo-400: oklch(0.673 0.182 276.935);
+ --color-indigo-500: oklch(0.585 0.233 277.117);
+ --color-indigo-600: oklch(0.511 0.262 276.966);
+ --color-indigo-700: oklch(0.457 0.24 277.023);
+ --color-indigo-800: oklch(0.398 0.195 277.366);
+ --color-indigo-900: oklch(0.359 0.144 278.697);
+ --color-indigo-950: oklch(0.257 0.09 281.288);
+
+ --color-violet-50: oklch(0.969 0.016 293.756);
+ --color-violet-100: oklch(0.943 0.029 294.588);
+ --color-violet-200: oklch(0.894 0.057 293.283);
+ --color-violet-300: oklch(0.811 0.111 293.571);
+ --color-violet-400: oklch(0.702 0.183 293.541);
+ --color-violet-500: oklch(0.606 0.25 292.717);
+ --color-violet-600: oklch(0.541 0.281 293.009);
+ --color-violet-700: oklch(0.491 0.27 292.581);
+ --color-violet-800: oklch(0.432 0.232 292.759);
+ --color-violet-900: oklch(0.38 0.189 293.745);
+ --color-violet-950: oklch(0.283 0.141 291.089);
+
+ --color-purple-50: oklch(0.977 0.014 308.299);
+ --color-purple-100: oklch(0.946 0.033 307.174);
+ --color-purple-200: oklch(0.902 0.063 306.703);
+ --color-purple-300: oklch(0.827 0.119 306.383);
+ --color-purple-400: oklch(0.714 0.203 305.504);
+ --color-purple-500: oklch(0.627 0.265 303.9);
+ --color-purple-600: oklch(0.558 0.288 302.321);
+ --color-purple-700: oklch(0.496 0.265 301.924);
+ --color-purple-800: oklch(0.438 0.218 303.724);
+ --color-purple-900: oklch(0.381 0.176 304.987);
+ --color-purple-950: oklch(0.291 0.149 302.717);
+
+ --color-fuchsia-50: oklch(0.977 0.017 320.058);
+ --color-fuchsia-100: oklch(0.952 0.037 318.852);
+ --color-fuchsia-200: oklch(0.903 0.076 319.62);
+ --color-fuchsia-300: oklch(0.833 0.145 321.434);
+ --color-fuchsia-400: oklch(0.74 0.238 322.16);
+ --color-fuchsia-500: oklch(0.667 0.295 322.15);
+ --color-fuchsia-600: oklch(0.591 0.293 322.896);
+ --color-fuchsia-700: oklch(0.518 0.253 323.949);
+ --color-fuchsia-800: oklch(0.452 0.211 324.591);
+ --color-fuchsia-900: oklch(0.401 0.17 325.612);
+ --color-fuchsia-950: oklch(0.293 0.136 325.661);
+
+ --color-pink-50: oklch(0.971 0.014 343.198);
+ --color-pink-100: oklch(0.948 0.028 342.258);
+ --color-pink-200: oklch(0.899 0.061 343.231);
+ --color-pink-300: oklch(0.823 0.12 346.018);
+ --color-pink-400: oklch(0.718 0.202 349.761);
+ --color-pink-500: oklch(0.656 0.241 354.308);
+ --color-pink-600: oklch(0.592 0.249 0.584);
+ --color-pink-700: oklch(0.525 0.223 3.958);
+ --color-pink-800: oklch(0.459 0.187 3.815);
+ --color-pink-900: oklch(0.408 0.153 2.432);
+ --color-pink-950: oklch(0.284 0.109 3.907);
+
+ --color-rose-50: oklch(0.969 0.015 12.422);
+ --color-rose-100: oklch(0.941 0.03 12.58);
+ --color-rose-200: oklch(0.892 0.058 10.001);
+ --color-rose-300: oklch(0.81 0.117 11.638);
+ --color-rose-400: oklch(0.712 0.194 13.428);
+ --color-rose-500: oklch(0.645 0.246 16.439);
+ --color-rose-600: oklch(0.586 0.253 17.585);
+ --color-rose-700: oklch(0.514 0.222 16.935);
+ --color-rose-800: oklch(0.455 0.188 13.697);
+ --color-rose-900: oklch(0.41 0.159 10.272);
+ --color-rose-950: oklch(0.271 0.105 12.094);
+
+ --color-slate-50: oklch(0.984 0.003 247.858);
+ --color-slate-100: oklch(0.968 0.007 247.896);
+ --color-slate-200: oklch(0.929 0.013 255.508);
+ --color-slate-300: oklch(0.869 0.022 252.894);
+ --color-slate-400: oklch(0.704 0.04 256.788);
+ --color-slate-500: oklch(0.554 0.046 257.417);
+ --color-slate-600: oklch(0.446 0.043 257.281);
+ --color-slate-700: oklch(0.372 0.044 257.287);
+ --color-slate-800: oklch(0.279 0.041 260.031);
+ --color-slate-900: oklch(0.208 0.042 265.755);
+ --color-slate-950: oklch(0.129 0.042 264.695);
+
+ --color-gray-50: oklch(0.985 0.002 247.839);
+ --color-gray-100: oklch(0.967 0.003 264.542);
+ --color-gray-200: oklch(0.928 0.006 264.531);
+ --color-gray-300: oklch(0.872 0.01 258.338);
+ --color-gray-400: oklch(0.707 0.022 261.325);
+ --color-gray-500: oklch(0.551 0.027 264.364);
+ --color-gray-600: oklch(0.446 0.03 256.802);
+ --color-gray-700: oklch(0.373 0.034 259.733);
+ --color-gray-800: oklch(0.278 0.033 256.848);
+ --color-gray-900: oklch(0.21 0.034 264.665);
+ --color-gray-950: oklch(0.13 0.028 261.692);
+
+ --color-zinc-50: oklch(0.985 0 0);
+ --color-zinc-100: oklch(0.967 0.001 286.375);
+ --color-zinc-200: oklch(0.92 0.004 286.32);
+ --color-zinc-300: oklch(0.871 0.006 286.286);
+ --color-zinc-400: oklch(0.705 0.015 286.067);
+ --color-zinc-500: oklch(0.552 0.016 285.938);
+ --color-zinc-600: oklch(0.442 0.017 285.786);
+ --color-zinc-700: oklch(0.37 0.013 285.805);
+ --color-zinc-800: oklch(0.274 0.006 286.033);
+ --color-zinc-900: oklch(0.21 0.006 285.885);
+ --color-zinc-950: oklch(0.141 0.005 285.823);
+
+ --color-neutral-50: oklch(0.985 0 0);
+ --color-neutral-100: oklch(0.97 0 0);
+ --color-neutral-200: oklch(0.922 0 0);
+ --color-neutral-300: oklch(0.87 0 0);
+ --color-neutral-400: oklch(0.708 0 0);
+ --color-neutral-500: oklch(0.556 0 0);
+ --color-neutral-600: oklch(0.439 0 0);
+ --color-neutral-700: oklch(0.371 0 0);
+ --color-neutral-800: oklch(0.269 0 0);
+ --color-neutral-900: oklch(0.205 0 0);
+ --color-neutral-950: oklch(0.145 0 0);
+
+ --color-stone-50: oklch(0.985 0.001 106.423);
+ --color-stone-100: oklch(0.97 0.001 106.424);
+ --color-stone-200: oklch(0.923 0.003 48.717);
+ --color-stone-300: oklch(0.869 0.005 56.366);
+ --color-stone-400: oklch(0.709 0.01 56.259);
+ --color-stone-500: oklch(0.553 0.013 58.071);
+ --color-stone-600: oklch(0.444 0.011 73.639);
+ --color-stone-700: oklch(0.374 0.01 67.558);
+ --color-stone-800: oklch(0.268 0.007 34.298);
+ --color-stone-900: oklch(0.216 0.006 56.043);
+ --color-stone-950: oklch(0.147 0.004 49.25);
+
+ --color-black: #000;
+ --color-white: #fff;
+
+ --spacing: 0.25rem;
+
+ --breakpoint-sm: 40rem;
+ --breakpoint-md: 48rem;
+ --breakpoint-lg: 64rem;
+ --breakpoint-xl: 80rem;
+ --breakpoint-2xl: 96rem;
+
+ --container-3xs: 16rem;
+ --container-2xs: 18rem;
+ --container-xs: 20rem;
+ --container-sm: 24rem;
+ --container-md: 28rem;
+ --container-lg: 32rem;
+ --container-xl: 36rem;
+ --container-2xl: 42rem;
+ --container-3xl: 48rem;
+ --container-4xl: 56rem;
+ --container-5xl: 64rem;
+ --container-6xl: 72rem;
+ --container-7xl: 80rem;
+
+ --text-xs: 0.75rem;
+ --text-xs--line-height: calc(1 / 0.75);
+ --text-sm: 0.875rem;
+ --text-sm--line-height: calc(1.25 / 0.875);
+ --text-base: 1rem;
+ --text-base--line-height: calc(1.5 / 1);
+ --text-lg: 1.125rem;
+ --text-lg--line-height: calc(1.75 / 1.125);
+ --text-xl: 1.25rem;
+ --text-xl--line-height: calc(1.75 / 1.25);
+ --text-2xl: 1.5rem;
+ --text-2xl--line-height: calc(2 / 1.5);
+ --text-3xl: 1.875rem;
+ --text-3xl--line-height: calc(2.25 / 1.875);
+ --text-4xl: 2.25rem;
+ --text-4xl--line-height: calc(2.5 / 2.25);
+ --text-5xl: 3rem;
+ --text-5xl--line-height: 1;
+ --text-6xl: 3.75rem;
+ --text-6xl--line-height: 1;
+ --text-7xl: 4.5rem;
+ --text-7xl--line-height: 1;
+ --text-8xl: 6rem;
+ --text-8xl--line-height: 1;
+ --text-9xl: 8rem;
+ --text-9xl--line-height: 1;
+
+ --font-weight-thin: 100;
+ --font-weight-extralight: 200;
+ --font-weight-light: 300;
+ --font-weight-normal: 400;
+ --font-weight-medium: 500;
+ --font-weight-semibold: 600;
+ --font-weight-bold: 700;
+ --font-weight-extrabold: 800;
+ --font-weight-black: 900;
+
+ --tracking-tighter: -0.05em;
+ --tracking-tight: -0.025em;
+ --tracking-normal: 0em;
+ --tracking-wide: 0.025em;
+ --tracking-wider: 0.05em;
+ --tracking-widest: 0.1em;
+
+ --leading-tight: 1.25;
+ --leading-snug: 1.375;
+ --leading-normal: 1.5;
+ --leading-relaxed: 1.625;
+ --leading-loose: 2;
+
+ --radius-xs: 0.125rem;
+ --radius-sm: 0.25rem;
+ --radius-md: 0.375rem;
+ --radius-lg: 0.5rem;
+ --radius-xl: 0.75rem;
+ --radius-2xl: 1rem;
+ --radius-3xl: 1.5rem;
+ --radius-4xl: 2rem;
+
+ --shadow-2xs: 0 1px rgb(0 0 0 / 0.05);
+ --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
+ --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
+ --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
+ --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
+ --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
+ --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
+
+ --inset-shadow-2xs: inset 0 1px rgb(0 0 0 / 0.05);
+ --inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);
+ --inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);
+
+ --drop-shadow-xs: 0 1px 1px rgb(0 0 0 / 0.05);
+ --drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15);
+ --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12);
+ --drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);
+ --drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1);
+ --drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15);
+
+ --ease-in: cubic-bezier(0.4, 0, 1, 1);
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
+
+ --animate-spin: spin 1s linear infinite;
+ --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
+ --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
+ --animate-bounce: bounce 1s infinite;
+
+ @keyframes spin {
+ to {
+ transform: rotate(360deg);
+ }
+ }
+
+ @keyframes ping {
+ 75%,
+ 100% {
+ transform: scale(2);
+ opacity: 0;
+ }
+ }
+
+ @keyframes pulse {
+ 50% {
+ opacity: 0.5;
+ }
+ }
+
+ @keyframes bounce {
+ 0%,
+ 100% {
+ transform: translateY(-25%);
+ animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
+ }
+
+ 50% {
+ transform: none;
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
+ }
+ }
+
+ --blur-xs: 4px;
+ --blur-sm: 8px;
+ --blur-md: 12px;
+ --blur-lg: 16px;
+ --blur-xl: 24px;
+ --blur-2xl: 40px;
+ --blur-3xl: 64px;
+
+ --perspective-dramatic: 100px;
+ --perspective-near: 300px;
+ --perspective-normal: 500px;
+ --perspective-midrange: 800px;
+ --perspective-distant: 1200px;
+
+ --aspect-video: 16 / 9;
+
+ --default-transition-duration: 150ms;
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
+ --default-font-family: var(--font-sans);
+ --default-font-feature-settings: var(--font-sans--font-feature-settings);
+ --default-font-variation-settings: var(--font-sans--font-variation-settings);
+ --default-mono-font-family: var(--font-mono);
+ --default-mono-font-feature-settings: var(--font-mono--font-feature-settings);
+ --default-mono-font-variation-settings: var(--font-mono--font-variation-settings);
+}
+
+/* Deprecated */
+@theme default inline reference {
+ --blur: 8px;
+ --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
+ --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
+ --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);
+ --radius: 0.25rem;
+ --max-width-prose: 65ch;
+}
diff --git a/packages/weapp-tailwindcss/utilities.css b/packages/weapp-tailwindcss/utilities.css
new file mode 100644
index 000000000..65dd5f63a
--- /dev/null
+++ b/packages/weapp-tailwindcss/utilities.css
@@ -0,0 +1 @@
+@tailwind utilities;
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 4a05c0bdc..0fa032d8e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -467,7 +467,7 @@ importers:
version: 4.0.4
'@tailwindcss/vite':
specifier: ^4.0.4
- version: 4.0.4(vite@5.4.14(@types/node@22.13.1)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0))
+ version: 4.0.4(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))
autoprefixer:
specifier: ^10.4.20
version: 10.4.20(postcss@8.5.1)
@@ -475,8 +475,8 @@ importers:
specifier: ^8.5.1
version: 8.5.1
tailwindcss:
- specifier: ^4.0.3
- version: 4.0.3
+ specifier: ^4.0.4
+ version: 4.0.4
tailwindcss-injector:
specifier: workspace:*
version: link:../../packages/tailwindcss-injector
@@ -484,8 +484,8 @@ importers:
specifier: workspace:*
version: link:../../packages/weapp-tailwindcss
weapp-vite:
- specifier: ^2.1.2
- version: 2.1.2(@types/node@22.13.1)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.7.0)
+ specifier: ^2.1.3
+ version: 2.1.3(@types/node@22.13.1)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.7.0)
apps/vite-native-skyline:
devDependencies:
@@ -508,8 +508,8 @@ importers:
specifier: workspace:*
version: link:../../packages/weapp-tailwindcss
weapp-vite:
- specifier: ^2.1.2
- version: 2.1.2(@types/node@22.13.1)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.7.0)
+ specifier: ^2.1.3
+ version: 2.1.3(@types/node@22.13.1)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.7.0)
apps/vite-native-ts:
dependencies:
@@ -536,8 +536,8 @@ importers:
specifier: workspace:*
version: link:../../packages/weapp-tailwindcss
weapp-vite:
- specifier: ^2.1.2
- version: 2.1.2(@types/node@22.13.1)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.7.0)
+ specifier: ^2.1.3
+ version: 2.1.3(@types/node@22.13.1)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.7.0)
apps/vite-native-ts-skyline:
devDependencies:
@@ -560,8 +560,8 @@ importers:
specifier: workspace:*
version: link:../../packages/weapp-tailwindcss
weapp-vite:
- specifier: ^2.1.2
- version: 2.1.2(@types/node@22.13.1)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.7.0)
+ specifier: ^2.1.3
+ version: 2.1.3(@types/node@22.13.1)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.7.0)
apps/weapp-wechat-zhihu:
devDependencies:
@@ -1217,8 +1217,8 @@ packages:
resolution: {integrity: sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.7':
- resolution: {integrity: sha512-SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==}
+ '@babel/compat-data@7.26.8':
+ resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.26.8':
@@ -1417,6 +1417,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-async-generator-functions@7.26.8':
+ resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-async-to-generator@7.25.9':
resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
engines: {node: '>=6.9.0'}
@@ -1711,6 +1717,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-template-literals@7.26.8':
+ resolution: {integrity: sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-typeof-symbol@7.25.9':
resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==}
engines: {node: '>=6.9.0'}
@@ -1723,8 +1735,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.26.7':
- resolution: {integrity: sha512-5cJurntg+AT+cgelGP9Bt788DKiAw9gIMSMU2NJrLAilnj0m8WZWUNZPSLOmadYsujHutpgElO+50foX+ib/Wg==}
+ '@babel/plugin-transform-typescript@7.26.8':
+ resolution: {integrity: sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1759,8 +1771,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-env@7.26.7':
- resolution: {integrity: sha512-Ycg2tnXwixaXOVb29rana8HNPgLVBof8qqtNQ9LE22IoyZboQbGSxI6ZySMdW3K5nAe6gu35IaJefUJflhUFTQ==}
+ '@babel/preset-env@7.26.8':
+ resolution: {integrity: sha512-um7Sy+2THd697S4zJEfv/U5MHGJzkN2xhtsR3T/SWRbVSic62nbISh51VVfU9JiO/L/Z97QczHTaFVkOU8IzNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2475,6 +2487,12 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.25.0':
+ resolution: {integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.21.5':
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
engines: {node: '>=12'}
@@ -2493,6 +2511,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.25.0':
+ resolution: {integrity: sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.21.5':
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
engines: {node: '>=12'}
@@ -2511,6 +2535,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.25.0':
+ resolution: {integrity: sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.21.5':
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
engines: {node: '>=12'}
@@ -2529,6 +2559,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.25.0':
+ resolution: {integrity: sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.21.5':
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
engines: {node: '>=12'}
@@ -2547,6 +2583,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.25.0':
+ resolution: {integrity: sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.21.5':
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
engines: {node: '>=12'}
@@ -2565,6 +2607,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.25.0':
+ resolution: {integrity: sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.21.5':
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
engines: {node: '>=12'}
@@ -2583,6 +2631,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.25.0':
+ resolution: {integrity: sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.21.5':
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
engines: {node: '>=12'}
@@ -2601,6 +2655,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.25.0':
+ resolution: {integrity: sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.21.5':
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
engines: {node: '>=12'}
@@ -2619,6 +2679,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.25.0':
+ resolution: {integrity: sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.21.5':
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
engines: {node: '>=12'}
@@ -2637,6 +2703,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.25.0':
+ resolution: {integrity: sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.21.5':
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
engines: {node: '>=12'}
@@ -2655,6 +2727,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.25.0':
+ resolution: {integrity: sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.21.5':
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
@@ -2673,6 +2751,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.25.0':
+ resolution: {integrity: sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.21.5':
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
@@ -2691,6 +2775,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.25.0':
+ resolution: {integrity: sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.21.5':
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
engines: {node: '>=12'}
@@ -2709,6 +2799,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.25.0':
+ resolution: {integrity: sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.21.5':
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
engines: {node: '>=12'}
@@ -2727,6 +2823,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.25.0':
+ resolution: {integrity: sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.21.5':
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
engines: {node: '>=12'}
@@ -2745,6 +2847,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.25.0':
+ resolution: {integrity: sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.21.5':
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
engines: {node: '>=12'}
@@ -2763,12 +2871,24 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.25.0':
+ resolution: {integrity: sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-arm64@0.24.2':
resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
+ '@esbuild/netbsd-arm64@0.25.0':
+ resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
@@ -2787,6 +2907,12 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.25.0':
+ resolution: {integrity: sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-arm64@0.23.1':
resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
engines: {node: '>=18'}
@@ -2799,6 +2925,12 @@ packages:
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-arm64@0.25.0':
+ resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.21.5':
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
@@ -2817,6 +2949,12 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.25.0':
+ resolution: {integrity: sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/sunos-x64@0.21.5':
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
engines: {node: '>=12'}
@@ -2835,6 +2973,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.25.0':
+ resolution: {integrity: sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.21.5':
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
engines: {node: '>=12'}
@@ -2853,6 +2997,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.25.0':
+ resolution: {integrity: sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.21.5':
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
engines: {node: '>=12'}
@@ -2871,6 +3021,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.25.0':
+ resolution: {integrity: sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.21.5':
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
engines: {node: '>=12'}
@@ -2889,6 +3045,12 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.25.0':
+ resolution: {integrity: sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-plugin-eslint-comments@4.4.1':
resolution: {integrity: sha512-lb/Z/MzbTf7CaVYM9WCFNQZ4L1yi3ev2fsFPF99h31ljhSEyUoyEsKsNWiU+qD1glbYTDJdqgyaLKtyTkkqtuQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -4203,9 +4365,6 @@ packages:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
- '@ts-morph/common@0.26.0':
- resolution: {integrity: sha512-/RmKAtctStXqM5nECMQ46duT74Hoig/DBzhWXGHcodlDNrgRbsbwwHqSKFNbca6z9Xt/CUWMeXOsC9QEN1+rqw==}
-
'@ts-morph/common@0.26.1':
resolution: {integrity: sha512-Sn28TGl/4cFpcM+jwsH1wLncYq3FtN/BIpem+HOygfBWPT5pAeS5dB4VFVzV8FbnOKHpDLZmvAl4AjPEev5idA==}
@@ -4786,20 +4945,20 @@ packages:
'@weapp-core/escape@4.0.0':
resolution: {integrity: sha512-jByUEVNAWatSV4uWxS6OMhFvTVP5TvAW2mbLVrxW8fd4xAiiSWNhokbT2h6xIYby0cGQ2h4mVfowmf/e0Gar9w==}
- '@weapp-core/init@1.1.15':
- resolution: {integrity: sha512-TaJtg8JHVQqvaBtfZd5r3Ckhn0tlUJovJ5ErccWZdSolN9ok9ot+/0n48I3J4hZh0VDa/26etsGRhOQ6e3TtSg==}
+ '@weapp-core/init@1.1.16':
+ resolution: {integrity: sha512-J6V3M9ApGkIlOYFF4d9bmr97ZcZ8Kp0bARrqMiECtUBNTWEQa4jUC8bDZU9Stkwu8YkgS255GjVCC7IzH5cY9Q==}
- '@weapp-core/logger@1.0.2':
- resolution: {integrity: sha512-EiCBsl78Z+xlOD4IQ+GWCNcz0u0xcdPFdg/3PJ4QPM75YMi9OcSFKl5bNQcSCPGA+xw67MFuCFj8Uv7yAcNDYw==}
+ '@weapp-core/logger@1.0.3':
+ resolution: {integrity: sha512-Lmpuuuf87D2XqYUs9emObtjlSheBLjYmgil7sM7L/a3YZpUEJMs26c4YI3bzMFjDYgmLzAw6LVDQ1szLqKoF4A==}
'@weapp-core/regex@1.0.1':
resolution: {integrity: sha512-gRIHHAb1MoTmM1lzfaKldwNXgsScaVu9/bnZDKT0A1CgUkaHAouxvZta3yQgev91V3ZAHQ+tdwA8WGhpkstzUw==}
- '@weapp-core/schematics@1.0.9':
- resolution: {integrity: sha512-//qJ9Mq2N3+XzOENilgyQdUiEl1LG9o3RDsi+PYhJwIl5fFAx0W6U+EzvQQ6MJ4ijz6bDktjRjktaX/jjnuvTw==}
+ '@weapp-core/schematics@1.0.10':
+ resolution: {integrity: sha512-8dFXdwmlCNHmZ654UGWxbrF3A973ABADZRUBC56/pQZxHpWhdovfU5GuB2mDVNoKg8p9cfATV2PO2bcSQtyV4Q==}
- '@weapp-core/shared@1.0.5':
- resolution: {integrity: sha512-1Kzw+y7LyYLBNryuwQGdgvMvmZnar8+0ph9duMauWJX5AXJVhd5W7pAgtqgr7nmk8aoqtj2qAsBVG21/AZKfrg==}
+ '@weapp-core/shared@1.0.6':
+ resolution: {integrity: sha512-ZPW8ST7kTdqKHxih8MJx+QPKkTYpmewDRRjP9dLlW5j/ewOUP+n2YYkpx7Q6LqbyyrgF84iGuqZIhWUisFuSsg==}
'@webassemblyjs/ast@1.14.1':
resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
@@ -5317,6 +5476,11 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-corejs3@0.11.1:
+ resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-plugin-polyfill-regenerator@0.6.3:
resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==}
peerDependencies:
@@ -6839,6 +7003,11 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ esbuild@0.25.0:
+ resolution: {integrity: sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -13292,9 +13461,6 @@ packages:
ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- ts-morph@25.0.0:
- resolution: {integrity: sha512-ERPTUVO5qF8cEGJgAejGOsCVlbk8d0SDyiJsucKQT5XgqoZslv0Qml+gnui6Yy6o+uQqw5SestyW2HvlVtT/Sg==}
-
ts-morph@25.0.1:
resolution: {integrity: sha512-QJEiTdnz1YjrB3JFhd626gX4rKHDLSjSVMvGGG4v7ONc3RBwa0Eei98G9AT9uNFDMtV54JyuXsFeC+OH0n6bXQ==}
@@ -13315,8 +13481,8 @@ packages:
ts-pattern@5.6.2:
resolution: {integrity: sha512-d4IxJUXROL5NCa3amvMg6VQW2HVtZYmUTPfvVtO7zJWGYLJ+mry9v2OmYm+z67aniQoQ8/yFNadiEwtNS9qQiw==}
- tsconfck@3.1.4:
- resolution: {integrity: sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ==}
+ tsconfck@3.1.5:
+ resolution: {integrity: sha512-CLDfGgUp7XPswWnezWwsCRxNmgQjhYq3VXHM0/XIRxhVrKw0M1if9agzryh1QS3nxjCROvV+xWxoJO1YctzzWg==}
engines: {node: ^18 || >=20}
hasBin: true
peerDependencies:
@@ -13997,8 +14163,8 @@ packages:
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
- weapp-ide-cli@2.0.9:
- resolution: {integrity: sha512-OYOwBbpYa1y/qSJjmKw4ztSzarjehVmNiHlrQp7gQ6JUakWooAjLaitmbdOOQDHsQxQqn2T5CsDXDLOI9Xx7Zw==}
+ weapp-ide-cli@2.0.10:
+ resolution: {integrity: sha512-aJVO3dceQAXmo/oJmQlQwsNvwa2soCrXZH95nERoiIoNSoQ4LM2vQosH2QNqtIJW/NSlbdE8B8sU9/19OAUwMA==}
hasBin: true
weapp-tailwindcss-children@0.1.0:
@@ -14006,8 +14172,8 @@ packages:
peerDependencies:
tailwindcss: ^3.0.0
- weapp-vite@2.1.2:
- resolution: {integrity: sha512-fDx65hQ089DAScTiBmURrvo+SaJM8+xqZnDJArRFSvFHMVm8yruT8SIkibFYCT0CUgsdKdlFEzVUAzddztOaKg==}
+ weapp-vite@2.1.3:
+ resolution: {integrity: sha512-zkGmAMUroxwFANE+HPpQkIqeXnvku9EeF7vCp5haG80VpbPoc/XczR8WiS79t0yEk6IfHZfj1pVgPOZ2Zy05VA==}
engines: {node: '>=20.0.0'}
hasBin: true
@@ -14605,25 +14771,7 @@ snapshots:
'@babel/compat-data@7.26.5': {}
- '@babel/core@7.26.7':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.8
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7)
- '@babel/helpers': 7.26.7
- '@babel/parser': 7.26.8
- '@babel/template': 7.25.9
- '@babel/traverse': 7.26.8
- '@babel/types': 7.26.7
- convert-source-map: 2.0.0
- debug: 4.4.0
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
+ '@babel/compat-data@7.26.8': {}
'@babel/core@7.26.8':
dependencies:
@@ -14664,7 +14812,7 @@ snapshots:
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.26.7
+ '@babel/types': 7.26.8
'@babel/helper-compilation-targets@7.26.5':
dependencies:
@@ -14674,19 +14822,6 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.7)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.26.8
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -14700,13 +14835,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-annotate-as-pure': 7.25.9
- regexpu-core: 6.2.0
- semver: 6.3.1
-
'@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -14714,17 +14842,6 @@ snapshots:
regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.25.9
- debug: 4.4.0
- lodash.debounce: 4.0.8
- resolve: 1.22.9
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -14739,7 +14856,7 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
'@babel/traverse': 7.26.8
- '@babel/types': 7.26.7
+ '@babel/types': 7.26.8
transitivePeerDependencies:
- supports-color
@@ -14750,15 +14867,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-transforms@7.26.0(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -14770,21 +14878,12 @@ snapshots:
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/types': 7.26.7
+ '@babel/types': 7.26.8
'@babel/helper-plugin-utils@7.25.9': {}
'@babel/helper-plugin-utils@7.26.5': {}
- '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.26.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -14794,15 +14893,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.26.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-replace-supers@7.26.5(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -14815,7 +14905,7 @@ snapshots:
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
'@babel/traverse': 7.26.8
- '@babel/types': 7.26.7
+ '@babel/types': 7.26.8
transitivePeerDependencies:
- supports-color
@@ -14829,7 +14919,7 @@ snapshots:
dependencies:
'@babel/template': 7.26.8
'@babel/traverse': 7.26.8
- '@babel/types': 7.26.7
+ '@babel/types': 7.26.8
transitivePeerDependencies:
- supports-color
@@ -14853,14 +14943,6 @@ snapshots:
dependencies:
'@babel/types': 7.26.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -14869,35 +14951,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.7)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -14907,14 +14970,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -14923,10 +14978,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
-
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -14936,77 +14987,37 @@ snapshots:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.7)
- '@babel/traverse': 7.26.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15016,12 +15027,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.7)':
+ '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-module-imports': 7.25.9
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.7)
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.8)
+ '@babel/traverse': 7.26.8
transitivePeerDependencies:
- supports-color
@@ -15034,34 +15045,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15070,14 +15063,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15086,18 +15071,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.7)
- '@babel/traverse': 7.26.8
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15110,100 +15083,49 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/template': 7.26.8
-
'@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
'@babel/template': 7.26.8
- '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15212,15 +15134,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15230,54 +15143,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15286,14 +15171,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15302,31 +15179,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.8)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.8
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.7)
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.8)
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.26.8
transitivePeerDependencies:
- supports-color
@@ -15338,55 +15197,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.7)
-
'@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15394,14 +15225,6 @@ snapshots:
'@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.8)
- '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.7)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15410,24 +15233,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15436,24 +15246,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15462,15 +15259,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15480,11 +15268,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15524,35 +15307,18 @@ snapshots:
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
- regenerator-transform: 0.15.2
-
'@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
regenerator-transform: 0.15.2
- '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15570,24 +15336,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15596,48 +15349,32 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.8)':
+ '@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-typeof-symbol@7.26.7(@babel/core@7.26.7)':
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.7
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-typescript@7.26.7(@babel/core@7.26.7)':
+ '@babel/plugin-transform-typeof-symbol@7.26.7(@babel/core@7.26.8)':
dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.7)
+ '@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.7)
- transitivePeerDependencies:
- - supports-color
- '@babel/plugin-transform-typescript@7.26.7(@babel/core@7.26.8)':
+ '@babel/plugin-transform-typescript@7.26.8(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-annotate-as-pure': 7.25.9
@@ -15648,46 +15385,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.8)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.7)
- '@babel/helper-plugin-utils': 7.26.5
-
'@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15769,93 +15483,86 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-env@7.26.7(@babel/core@7.26.7)':
+ '@babel/preset-env@7.26.8(@babel/core@7.26.8)':
dependencies:
- '@babel/compat-data': 7.26.5
- '@babel/core': 7.26.7
+ '@babel/compat-data': 7.26.8
+ '@babel/core': 7.26.8
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-option': 7.25.9
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.7)
- '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.7)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.7)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.7)
- '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.7)
- '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.7)
- '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.7)
- '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.7)
- '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.7)
- '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.7)
- '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-typeof-symbol': 7.26.7(@babel/core@7.26.7)
- '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.7)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.7)
- babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.7)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.7)
- babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.7)
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.8)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.8)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.8)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.8)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.8)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.8)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.8)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.8)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.8)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.26.8)
+ '@babel/plugin-transform-typeof-symbol': 7.26.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.8)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.8)
+ babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.8)
+ babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.8)
+ babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.8)
core-js-compat: 3.40.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/types': 7.26.7
- esutils: 2.0.3
-
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
'@babel/helper-plugin-utils': 7.26.5
- '@babel/types': 7.26.7
+ '@babel/types': 7.26.8
esutils: 2.0.3
'@babel/preset-react@7.26.3(@babel/core@7.26.8)':
@@ -15870,17 +15577,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.26.0(@babel/core@7.26.7)':
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-validator-option': 7.25.9
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.7)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.7)
- '@babel/plugin-transform-typescript': 7.26.7(@babel/core@7.26.7)
- transitivePeerDependencies:
- - supports-color
-
'@babel/preset-typescript@7.26.0(@babel/core@7.26.8)':
dependencies:
'@babel/core': 7.26.8
@@ -15888,7 +15584,7 @@ snapshots:
'@babel/helper-validator-option': 7.25.9
'@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.8)
'@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.8)
- '@babel/plugin-transform-typescript': 7.26.7(@babel/core@7.26.8)
+ '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.8)
transitivePeerDependencies:
- supports-color
@@ -17347,6 +17043,9 @@ snapshots:
'@esbuild/aix-ppc64@0.24.2':
optional: true
+ '@esbuild/aix-ppc64@0.25.0':
+ optional: true
+
'@esbuild/android-arm64@0.21.5':
optional: true
@@ -17356,6 +17055,9 @@ snapshots:
'@esbuild/android-arm64@0.24.2':
optional: true
+ '@esbuild/android-arm64@0.25.0':
+ optional: true
+
'@esbuild/android-arm@0.21.5':
optional: true
@@ -17365,6 +17067,9 @@ snapshots:
'@esbuild/android-arm@0.24.2':
optional: true
+ '@esbuild/android-arm@0.25.0':
+ optional: true
+
'@esbuild/android-x64@0.21.5':
optional: true
@@ -17374,6 +17079,9 @@ snapshots:
'@esbuild/android-x64@0.24.2':
optional: true
+ '@esbuild/android-x64@0.25.0':
+ optional: true
+
'@esbuild/darwin-arm64@0.21.5':
optional: true
@@ -17383,6 +17091,9 @@ snapshots:
'@esbuild/darwin-arm64@0.24.2':
optional: true
+ '@esbuild/darwin-arm64@0.25.0':
+ optional: true
+
'@esbuild/darwin-x64@0.21.5':
optional: true
@@ -17392,6 +17103,9 @@ snapshots:
'@esbuild/darwin-x64@0.24.2':
optional: true
+ '@esbuild/darwin-x64@0.25.0':
+ optional: true
+
'@esbuild/freebsd-arm64@0.21.5':
optional: true
@@ -17401,6 +17115,9 @@ snapshots:
'@esbuild/freebsd-arm64@0.24.2':
optional: true
+ '@esbuild/freebsd-arm64@0.25.0':
+ optional: true
+
'@esbuild/freebsd-x64@0.21.5':
optional: true
@@ -17410,6 +17127,9 @@ snapshots:
'@esbuild/freebsd-x64@0.24.2':
optional: true
+ '@esbuild/freebsd-x64@0.25.0':
+ optional: true
+
'@esbuild/linux-arm64@0.21.5':
optional: true
@@ -17419,6 +17139,9 @@ snapshots:
'@esbuild/linux-arm64@0.24.2':
optional: true
+ '@esbuild/linux-arm64@0.25.0':
+ optional: true
+
'@esbuild/linux-arm@0.21.5':
optional: true
@@ -17428,6 +17151,9 @@ snapshots:
'@esbuild/linux-arm@0.24.2':
optional: true
+ '@esbuild/linux-arm@0.25.0':
+ optional: true
+
'@esbuild/linux-ia32@0.21.5':
optional: true
@@ -17437,6 +17163,9 @@ snapshots:
'@esbuild/linux-ia32@0.24.2':
optional: true
+ '@esbuild/linux-ia32@0.25.0':
+ optional: true
+
'@esbuild/linux-loong64@0.21.5':
optional: true
@@ -17446,6 +17175,9 @@ snapshots:
'@esbuild/linux-loong64@0.24.2':
optional: true
+ '@esbuild/linux-loong64@0.25.0':
+ optional: true
+
'@esbuild/linux-mips64el@0.21.5':
optional: true
@@ -17455,6 +17187,9 @@ snapshots:
'@esbuild/linux-mips64el@0.24.2':
optional: true
+ '@esbuild/linux-mips64el@0.25.0':
+ optional: true
+
'@esbuild/linux-ppc64@0.21.5':
optional: true
@@ -17464,6 +17199,9 @@ snapshots:
'@esbuild/linux-ppc64@0.24.2':
optional: true
+ '@esbuild/linux-ppc64@0.25.0':
+ optional: true
+
'@esbuild/linux-riscv64@0.21.5':
optional: true
@@ -17473,6 +17211,9 @@ snapshots:
'@esbuild/linux-riscv64@0.24.2':
optional: true
+ '@esbuild/linux-riscv64@0.25.0':
+ optional: true
+
'@esbuild/linux-s390x@0.21.5':
optional: true
@@ -17482,6 +17223,9 @@ snapshots:
'@esbuild/linux-s390x@0.24.2':
optional: true
+ '@esbuild/linux-s390x@0.25.0':
+ optional: true
+
'@esbuild/linux-x64@0.21.5':
optional: true
@@ -17491,9 +17235,15 @@ snapshots:
'@esbuild/linux-x64@0.24.2':
optional: true
+ '@esbuild/linux-x64@0.25.0':
+ optional: true
+
'@esbuild/netbsd-arm64@0.24.2':
optional: true
+ '@esbuild/netbsd-arm64@0.25.0':
+ optional: true
+
'@esbuild/netbsd-x64@0.21.5':
optional: true
@@ -17503,12 +17253,18 @@ snapshots:
'@esbuild/netbsd-x64@0.24.2':
optional: true
+ '@esbuild/netbsd-x64@0.25.0':
+ optional: true
+
'@esbuild/openbsd-arm64@0.23.1':
optional: true
'@esbuild/openbsd-arm64@0.24.2':
optional: true
+ '@esbuild/openbsd-arm64@0.25.0':
+ optional: true
+
'@esbuild/openbsd-x64@0.21.5':
optional: true
@@ -17518,6 +17274,9 @@ snapshots:
'@esbuild/openbsd-x64@0.24.2':
optional: true
+ '@esbuild/openbsd-x64@0.25.0':
+ optional: true
+
'@esbuild/sunos-x64@0.21.5':
optional: true
@@ -17527,6 +17286,9 @@ snapshots:
'@esbuild/sunos-x64@0.24.2':
optional: true
+ '@esbuild/sunos-x64@0.25.0':
+ optional: true
+
'@esbuild/win32-arm64@0.21.5':
optional: true
@@ -17536,6 +17298,9 @@ snapshots:
'@esbuild/win32-arm64@0.24.2':
optional: true
+ '@esbuild/win32-arm64@0.25.0':
+ optional: true
+
'@esbuild/win32-ia32@0.21.5':
optional: true
@@ -17545,6 +17310,9 @@ snapshots:
'@esbuild/win32-ia32@0.24.2':
optional: true
+ '@esbuild/win32-ia32@0.25.0':
+ optional: true
+
'@esbuild/win32-x64@0.21.5':
optional: true
@@ -17554,6 +17322,9 @@ snapshots:
'@esbuild/win32-x64@0.24.2':
optional: true
+ '@esbuild/win32-x64@0.25.0':
+ optional: true
+
'@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.20.0(jiti@2.4.2))':
dependencies:
escape-string-regexp: 4.0.0
@@ -19027,7 +18798,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.8
'@babel/plugin-transform-react-constant-elements': 7.25.9(@babel/core@7.26.8)
- '@babel/preset-env': 7.26.0(@babel/core@7.26.8)
+ '@babel/preset-env': 7.26.8(@babel/core@7.26.8)
'@babel/preset-react': 7.26.3(@babel/core@7.26.8)
'@babel/preset-typescript': 7.26.0(@babel/core@7.26.8)
'@svgr/core': 8.1.0(typescript@5.7.3)
@@ -19163,14 +18934,6 @@ snapshots:
postcss-selector-parser: 6.0.10
tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.13.1)(typescript@5.7.3))
- '@tailwindcss/vite@4.0.4(vite@5.4.14(@types/node@22.13.1)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0))':
- dependencies:
- '@tailwindcss/node': 4.0.4
- '@tailwindcss/oxide': 4.0.4
- lightningcss: 1.29.1
- tailwindcss: 4.0.4
- vite: 5.4.14(@types/node@22.13.1)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)
-
'@tailwindcss/vite@4.0.4(vite@6.1.0(@types/node@22.13.1)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))':
dependencies:
'@tailwindcss/node': 4.0.4
@@ -19181,12 +18944,6 @@ snapshots:
'@trysound/sax@0.2.0': {}
- '@ts-morph/common@0.26.0':
- dependencies:
- fast-glob: 3.3.3
- minimatch: 9.0.5
- path-browserify: 1.0.1
-
'@ts-morph/common@0.26.1':
dependencies:
fast-glob: 3.3.3
@@ -19957,21 +19714,21 @@ snapshots:
'@weapp-core/escape@4.0.0': {}
- '@weapp-core/init@1.1.15':
+ '@weapp-core/init@1.1.16':
dependencies:
- '@weapp-core/logger': 1.0.2
- '@weapp-core/shared': 1.0.5
+ '@weapp-core/logger': 1.0.3
+ '@weapp-core/shared': 1.0.6
fs-extra: 11.3.0
- '@weapp-core/logger@1.0.2':
+ '@weapp-core/logger@1.0.3':
dependencies:
consola: 3.4.0
'@weapp-core/regex@1.0.1': {}
- '@weapp-core/schematics@1.0.9': {}
+ '@weapp-core/schematics@1.0.10': {}
- '@weapp-core/shared@1.0.5':
+ '@weapp-core/shared@1.0.6':
dependencies:
object-hash: 3.0.0
@@ -20482,15 +20239,6 @@ snapshots:
dependencies:
object.assign: 4.1.7
- babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.7):
- dependencies:
- '@babel/compat-data': 7.26.3
- '@babel/core': 7.26.7
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.7)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.8):
dependencies:
'@babel/compat-data': 7.26.3
@@ -20500,14 +20248,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.7):
- dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.7)
- core-js-compat: 3.39.0
- transitivePeerDependencies:
- - supports-color
-
babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.8):
dependencies:
'@babel/core': 7.26.8
@@ -20516,10 +20256,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.7):
+ babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.8):
dependencies:
- '@babel/core': 7.26.7
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.7)
+ '@babel/core': 7.26.8
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.8)
+ core-js-compat: 3.40.0
transitivePeerDependencies:
- supports-color
@@ -22317,6 +22058,34 @@ snapshots:
'@esbuild/win32-ia32': 0.24.2
'@esbuild/win32-x64': 0.24.2
+ esbuild@0.25.0:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.25.0
+ '@esbuild/android-arm': 0.25.0
+ '@esbuild/android-arm64': 0.25.0
+ '@esbuild/android-x64': 0.25.0
+ '@esbuild/darwin-arm64': 0.25.0
+ '@esbuild/darwin-x64': 0.25.0
+ '@esbuild/freebsd-arm64': 0.25.0
+ '@esbuild/freebsd-x64': 0.25.0
+ '@esbuild/linux-arm': 0.25.0
+ '@esbuild/linux-arm64': 0.25.0
+ '@esbuild/linux-ia32': 0.25.0
+ '@esbuild/linux-loong64': 0.25.0
+ '@esbuild/linux-mips64el': 0.25.0
+ '@esbuild/linux-ppc64': 0.25.0
+ '@esbuild/linux-riscv64': 0.25.0
+ '@esbuild/linux-s390x': 0.25.0
+ '@esbuild/linux-x64': 0.25.0
+ '@esbuild/netbsd-arm64': 0.25.0
+ '@esbuild/netbsd-x64': 0.25.0
+ '@esbuild/openbsd-arm64': 0.25.0
+ '@esbuild/openbsd-x64': 0.25.0
+ '@esbuild/sunos-x64': 0.25.0
+ '@esbuild/win32-arm64': 0.25.0
+ '@esbuild/win32-ia32': 0.25.0
+ '@esbuild/win32-x64': 0.25.0
+
escalade@3.2.0: {}
escape-goat@4.0.0: {}
@@ -29959,11 +29728,6 @@ snapshots:
ts-interface-checker@0.1.13: {}
- ts-morph@25.0.0:
- dependencies:
- '@ts-morph/common': 0.26.0
- code-block-writer: 13.0.3
-
ts-morph@25.0.1:
dependencies:
'@ts-morph/common': 0.26.1
@@ -29990,7 +29754,7 @@ snapshots:
ts-pattern@5.6.2: {}
- tsconfck@3.1.4(typescript@5.7.3):
+ tsconfck@3.1.5(typescript@5.7.3):
optionalDependencies:
typescript: 5.7.3
@@ -30699,7 +30463,7 @@ snapshots:
dependencies:
debug: 4.4.0
globrex: 0.1.2
- tsconfck: 3.1.4(typescript@5.7.3)
+ tsconfck: 3.1.5(typescript@5.7.3)
optionalDependencies:
vite: 5.4.14(@types/node@22.13.1)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)
transitivePeerDependencies:
@@ -30842,9 +30606,9 @@ snapshots:
dependencies:
defaults: 1.0.4
- weapp-ide-cli@2.0.9:
+ weapp-ide-cli@2.0.10:
dependencies:
- '@weapp-core/logger': 1.0.2
+ '@weapp-core/logger': 1.0.3
execa: 9.5.2
fs-extra: 11.3.0
pathe: 2.0.2
@@ -30853,30 +30617,30 @@ snapshots:
dependencies:
tailwindcss: 3.4.17(ts-node@10.9.2(@types/node@22.13.1)(typescript@5.7.3))
- weapp-vite@2.1.2(@types/node@22.13.1)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.7.0):
+ weapp-vite@2.1.3(@types/node@22.13.1)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.7.0):
dependencies:
- '@babel/core': 7.26.7
- '@babel/preset-env': 7.26.7(@babel/core@7.26.7)
- '@babel/preset-typescript': 7.26.0(@babel/core@7.26.7)
- '@babel/types': 7.26.7
- '@weapp-core/init': 1.1.15
- '@weapp-core/logger': 1.0.2
- '@weapp-core/schematics': 1.0.9
- '@weapp-core/shared': 1.0.5
+ '@babel/core': 7.26.8
+ '@babel/preset-env': 7.26.8(@babel/core@7.26.8)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.8)
+ '@babel/types': 7.26.8
+ '@weapp-core/init': 1.1.16
+ '@weapp-core/logger': 1.0.3
+ '@weapp-core/schematics': 1.0.10
+ '@weapp-core/shared': 1.0.6
comment-json: 4.2.5
debug: 4.4.0
del: 8.0.0
- esbuild: 0.24.2
+ esbuild: 0.25.0
fdir: 6.4.3(picomatch@4.0.2)
fs-extra: 11.3.0
pathe: 2.0.2
picomatch: 4.0.2
postcss: 8.5.1
- ts-morph: 25.0.0
+ ts-morph: 25.0.1
tsup: 8.3.6(jiti@2.4.2)(postcss@8.5.1)(tsx@4.19.2)(typescript@5.7.3)(yaml@2.7.0)
vite: 5.4.14(@types/node@22.13.1)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0)
vite-tsconfig-paths: 5.1.4(typescript@5.7.3)(vite@5.4.14(@types/node@22.13.1)(less@4.2.0)(lightningcss@1.29.1)(sass-embedded@1.83.4)(sass@1.84.0)(stylus@0.63.0)(terser@5.37.0))
- weapp-ide-cli: 2.0.9
+ weapp-ide-cli: 2.0.10
transitivePeerDependencies:
- '@microsoft/api-extractor'
- '@swc/core'
diff --git a/stylelint.config.js b/stylelint.config.js
index 868b8c865..bcea65c91 100644
--- a/stylelint.config.js
+++ b/stylelint.config.js
@@ -1,7 +1,8 @@
import { icebreaker } from '@icebreakers/stylelint-config'
export default icebreaker({
- ignorePatterns: [
- '**/packages/weapp-tailwindcss/test/fixtures/css/**',
+ ignoreFiles: [
+ 'packages/weapp-tailwindcss/test/fixtures/css/**',
+ 'packages/weapp-tailwindcss/*.css',
],
})