From 6d6490ab311696e1b525f73d994837a04bd08d10 Mon Sep 17 00:00:00 2001 From: roymondchen Date: Tue, 20 Sep 2022 12:57:00 +0800 Subject: [PATCH] =?UTF-8?q?fix(playground):=20npm=20run=20dev=E5=90=8Eprox?= =?UTF-8?q?y=E5=A4=B1=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 4 +- packages/editor/package.json | 4 +- packages/form/package.json | 4 +- packages/table/package.json | 4 +- packages/ui-vue2/package.json | 2 +- playground/package.json | 6 +- playground/vite.config.ts | 25 +- pnpm-lock.yaml | 477 ++++++++++++++++++++++++++----- runtime/react/dev.vite.config.ts | 1 + runtime/react/package.json | 4 +- runtime/vue2/dev.vite.config.ts | 1 + runtime/vue2/package.json | 4 +- runtime/vue3/dev.vite.config.ts | 1 + runtime/vue3/package.json | 6 +- 14 files changed, 435 insertions(+), 108 deletions(-) diff --git a/package.json b/package.json index eb351875..15c76273 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,7 @@ "@types/node": "^15.12.4", "@typescript-eslint/eslint-plugin": "^4.28.0", "@typescript-eslint/parser": "^4.28.0", - "@vitejs/plugin-vue": "^3.0.1", + "@vitejs/plugin-vue": "^3.1.0", "c8": "^7.11.3", "chalk": "^4.1.0", "commitizen": "^4.2.4", @@ -74,7 +74,7 @@ "semver": "^7.3.7", "shx": "^0.3.4", "typescript": "^4.7.4", - "vite": "^3.0.4", + "vite": "^3.1.3", "vitest": "^0.21.1", "vue": "^3.2.37" }, diff --git a/packages/editor/package.json b/packages/editor/package.json index e9fea169..2ae0e838 100644 --- a/packages/editor/package.json +++ b/packages/editor/package.json @@ -72,13 +72,13 @@ "@types/lodash-es": "^4.17.4", "@types/node": "^15.12.4", "@types/serialize-javascript": "^5.0.1", - "@vitejs/plugin-vue": "^3.0.1", + "@vitejs/plugin-vue": "^3.1.0", "@vue/compiler-sfc": "^3.2.37", "@vue/test-utils": "^2.0.0", "rimraf": "^3.0.2", "sass": "^1.35.1", "typescript": "^4.7.4", - "vite": "^3.0.4", + "vite": "^3.1.3", "vue-tsc": "^0.39.4" } } diff --git a/packages/form/package.json b/packages/form/package.json index 9eee5526..594a19bb 100644 --- a/packages/form/package.json +++ b/packages/form/package.json @@ -50,13 +50,13 @@ "@types/lodash-es": "^4.17.4", "@types/node": "^15.12.4", "@types/sortablejs": "^1.10.7", - "@vitejs/plugin-vue": "^3.0.1", + "@vitejs/plugin-vue": "^3.1.0", "@vue/compiler-sfc": "^3.2.37", "@vue/test-utils": "^2.0.0", "rimraf": "^3.0.2", "sass": "^1.35.1", "typescript": "^4.7.4", - "vite": "^3.0.4", + "vite": "^3.1.3", "vue-tsc": "^0.39.4" } } diff --git a/packages/table/package.json b/packages/table/package.json index 54a95896..b1cf4e4a 100644 --- a/packages/table/package.json +++ b/packages/table/package.json @@ -47,13 +47,13 @@ "@types/color": "^3.0.1", "@types/lodash-es": "^4.17.4", "@types/node": "^15.12.4", - "@vitejs/plugin-vue": "^3.0.1", + "@vitejs/plugin-vue": "^3.1.0", "@vue/compiler-sfc": "^3.2.37", "@vue/test-utils": "^2.0.0", "rimraf": "^3.0.2", "sass": "^1.35.1", "typescript": "^4.7.4", - "vite": "^3.0.4", + "vite": "^3.1.3", "vue-tsc": "^0.39.4" } } diff --git a/packages/ui-vue2/package.json b/packages/ui-vue2/package.json index 97578ac8..1cd72612 100644 --- a/packages/ui-vue2/package.json +++ b/packages/ui-vue2/package.json @@ -20,7 +20,7 @@ "vue": "^2.7.4" }, "devDependencies": { - "vite": "^3.0.4", + "vite": "^3.1.3", "vue-template-compiler": "^2.7.4" } } diff --git a/playground/package.json b/playground/package.json index 4d5271cf..adfb9c62 100644 --- a/playground/package.json +++ b/playground/package.json @@ -27,13 +27,13 @@ "devDependencies": { "@types/node": "^15.12.4", "@types/serialize-javascript": "^5.0.1", - "@vitejs/plugin-legacy": "^2.0.0", - "@vitejs/plugin-vue": "^3.0.1", + "@vitejs/plugin-legacy": "^2.2.0", + "@vitejs/plugin-vue": "^3.1.0", "@vitejs/plugin-vue-jsx": "^1.3.10", "@vue/compiler-sfc": "^3.2.37", "sass": "^1.35.1", "typescript": "^4.7.4", - "vite": "^3.0.4", + "vite": "^3.1.3", "vue-tsc": "^0.39.4" } } diff --git a/playground/vite.config.ts b/playground/vite.config.ts index 38a737bf..098b5a8d 100644 --- a/playground/vite.config.ts +++ b/playground/vite.config.ts @@ -23,7 +23,7 @@ import legacy from '@vitejs/plugin-legacy'; import vue from '@vitejs/plugin-vue'; import vueJsx from '@vitejs/plugin-vue-jsx'; -export default defineConfig(({ command }) => ({ +export default defineConfig({ plugins: [ vue(), vueJsx(), @@ -66,19 +66,22 @@ export default defineConfig(({ command }) => ({ }, host: '0.0.0.0', port: 8098, - proxy: command - ? undefined - : { - '^/tmagic-editor/playground/runtime': { - target: 'http://127.0.0.1:8078', - changeOrigin: true, - prependPath: false, - }, - }, + strictPort: true, + proxy: { + '^/tmagic-editor/playground/runtime': { + target: 'http://127.0.0.1:8078', + changeOrigin: true, + prependPath: false, + }, + }, open: '/tmagic-editor/playground/', }, + preview: { + proxy: {}, + }, + build: { sourcemap: true, }, -})); +}); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 55508ab3..b43b586b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -34,7 +34,7 @@ importers: semver: ^7.3.7 shx: ^0.3.4 typescript: ^4.7.4 - vite: ^3.0.4 + vite: ^3.1.3 vitest: ^0.21.1 vue: ^3.2.37 devDependencies: @@ -44,7 +44,7 @@ importers: '@types/node': 15.14.9 '@typescript-eslint/eslint-plugin': 4.33.0_3ekaj7j3owlolnuhj3ykrb7u7i '@typescript-eslint/parser': 4.33.0_hxadhbs2xogijvk7vq4t2azzbu - '@vitejs/plugin-vue': 3.0.1_vite@3.0.4+vue@3.2.37 + '@vitejs/plugin-vue': 3.0.1_vite@3.1.3+vue@3.2.37 c8: 7.11.3 chalk: 4.1.2 commitizen: 4.2.4 @@ -68,7 +68,7 @@ importers: semver: 7.3.7 shx: 0.3.4 typescript: 4.7.4 - vite: 3.0.4 + vite: 3.1.3 vitest: 0.21.1_c8@7.11.3+jsdom@19.0.0 vue: 3.2.37 @@ -179,7 +179,7 @@ importers: sass: ^1.35.1 serialize-javascript: ^6.0.0 typescript: ^4.7.4 - vite: ^3.0.4 + vite: ^3.1.3 vue: ^3.2.37 vue-tsc: ^0.39.4 dependencies: @@ -205,13 +205,13 @@ importers: '@types/lodash-es': 4.17.6 '@types/node': 15.14.9 '@types/serialize-javascript': 5.0.2 - '@vitejs/plugin-vue': 3.0.1_vite@3.0.4+vue@3.2.37 + '@vitejs/plugin-vue': 3.0.1_vite@3.1.3+vue@3.2.37 '@vue/compiler-sfc': 3.2.37 '@vue/test-utils': 2.0.0_vue@3.2.37 rimraf: 3.0.2 sass: 1.52.2 typescript: 4.7.4 - vite: 3.0.4_sass@1.52.2 + vite: 3.1.3_sass@1.52.2 vue-tsc: 0.39.4_typescript@4.7.4 packages/form: @@ -231,7 +231,7 @@ importers: sass: ^1.35.1 sortablejs: ^1.14.0 typescript: ^4.7.4 - vite: ^3.0.4 + vite: ^3.1.3 vue: ^3.2.37 vue-tsc: ^0.39.4 dependencies: @@ -246,13 +246,13 @@ importers: '@types/lodash-es': 4.17.6 '@types/node': 15.14.9 '@types/sortablejs': 1.13.0 - '@vitejs/plugin-vue': 3.0.1_vite@3.0.4+vue@3.2.37 + '@vitejs/plugin-vue': 3.0.1_vite@3.1.3+vue@3.2.37 '@vue/compiler-sfc': 3.2.37 '@vue/test-utils': 2.0.0_vue@3.2.37 rimraf: 3.0.2 sass: 1.52.2 typescript: 4.7.4 - vite: 3.0.4_sass@1.52.2 + vite: 3.1.3_sass@1.52.2 vue-tsc: 0.39.4_typescript@4.7.4 packages/schema: @@ -319,7 +319,7 @@ importers: rimraf: ^3.0.2 sass: ^1.35.1 typescript: ^4.7.4 - vite: ^3.0.4 + vite: ^3.1.3 vue: ^3.2.37 vue-tsc: ^0.39.4 dependencies: @@ -332,13 +332,13 @@ importers: '@types/color': 3.0.3 '@types/lodash-es': 4.17.6 '@types/node': 15.14.9 - '@vitejs/plugin-vue': 3.0.1_vite@3.0.4+vue@3.2.37 + '@vitejs/plugin-vue': 3.0.1_vite@3.1.3+vue@3.2.37 '@vue/compiler-sfc': 3.2.37 '@vue/test-utils': 2.0.0_vue@3.2.37 rimraf: 3.0.2 sass: 1.52.2 typescript: 4.7.4 - vite: 3.0.4_sass@1.52.2 + vite: 3.1.3_sass@1.52.2 vue-tsc: 0.39.4_typescript@4.7.4 packages/ui: @@ -395,7 +395,7 @@ importers: '@tmagic/schema': 1.1.4 '@tmagic/utils': 1.1.4 qrcode: ^1.5.0 - vite: ^3.0.4 + vite: ^3.1.3 vue: ^2.7.4 vue-template-compiler: ^2.7.4 dependencies: @@ -405,7 +405,7 @@ importers: qrcode: 1.5.0 vue: 2.7.4 devDependencies: - vite: 3.0.4 + vite: 3.1.3 vue-template-compiler: 2.7.4 packages/utils: @@ -435,7 +435,7 @@ importers: '@tmagic/utils': 1.1.4 '@types/node': ^15.12.4 '@types/serialize-javascript': ^5.0.1 - '@vitejs/plugin-legacy': ^2.0.0 + '@vitejs/plugin-legacy': ^2.2.0 '@vitejs/plugin-vue': ^3.0.1 '@vitejs/plugin-vue-jsx': ^1.3.10 '@vue/compiler-sfc': ^3.2.37 @@ -445,7 +445,7 @@ importers: serialize-javascript: ^6.0.0 terser: ^5.14.2 typescript: ^4.7.4 - vite: ^3.0.4 + vite: ^3.1.3 vue: ^3.2.37 vue-router: ^4.0.10 vue-tsc: ^0.39.4 @@ -465,13 +465,13 @@ importers: devDependencies: '@types/node': 15.14.9 '@types/serialize-javascript': 5.0.2 - '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.4 - '@vitejs/plugin-vue': 3.0.1_vite@3.0.4+vue@3.2.37 + '@vitejs/plugin-legacy': 2.2.0_terser@5.14.2+vite@3.1.3 + '@vitejs/plugin-vue': 3.0.1_vite@3.1.3+vue@3.2.37 '@vitejs/plugin-vue-jsx': 1.3.10 '@vue/compiler-sfc': 3.2.37 sass: 1.52.2 typescript: 4.7.4 - vite: 3.0.4_sass@1.52.2+terser@5.14.2 + vite: 3.1.3_sass@1.52.2+terser@5.14.2 vue-tsc: 0.39.4_typescript@4.7.4 runtime/react: @@ -484,7 +484,7 @@ importers: '@tmagic/utils': 1.1.4 '@types/react': ^17.0.37 '@types/react-dom': ^17.0.11 - '@vitejs/plugin-legacy': ^2.0.0 + '@vitejs/plugin-legacy': ^2.2.0 '@vitejs/plugin-react-refresh': ^1.3.1 axios: ^0.25.0 react: ^17.0.2 @@ -492,7 +492,7 @@ importers: recast: ^0.20.4 terser: ^5.14.2 typescript: ^4.7.4 - vite: ^3.0.4 + vite: ^3.1.3 dependencies: '@tmagic/cli': link:../../packages/cli '@tmagic/core': link:../../packages/core @@ -507,11 +507,11 @@ importers: devDependencies: '@types/react': 17.0.45 '@types/react-dom': 17.0.17 - '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.4 + '@vitejs/plugin-legacy': 2.2.0_terser@5.14.2+vite@3.1.3 '@vitejs/plugin-react-refresh': 1.3.6 recast: 0.20.5 typescript: 4.7.4 - vite: 3.0.4_terser@5.14.2 + vite: 3.1.3_terser@5.14.2 runtime/vue2: specifiers: @@ -522,7 +522,7 @@ importers: '@tmagic/ui-vue2': 1.1.4 '@tmagic/utils': 1.1.4 '@types/events': ^3.0.0 - '@vitejs/plugin-legacy': ^2.0.0 + '@vitejs/plugin-legacy': ^2.2.0 '@vitejs/plugin-vue2': ^1.1.2 axios: ^0.25.0 recast: ^0.20.4 @@ -530,7 +530,7 @@ importers: rollup-plugin-external-globals: ^0.6.1 sass: ^1.35.1 terser: ^5.14.2 - vite: ^3.0.4 + vite: ^3.1.3 vue: ^2.7.4 vue-template-compiler: ^2.7.4 dependencies: @@ -545,13 +545,13 @@ importers: vue: 2.7.4 devDependencies: '@types/events': 3.0.0 - '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.4 - '@vitejs/plugin-vue2': 1.1.2_vite@3.0.4+vue@2.7.4 + '@vitejs/plugin-legacy': 2.2.0_terser@5.14.2+vite@3.1.3 + '@vitejs/plugin-vue2': 1.1.2_vite@3.1.3+vue@2.7.4 recast: 0.20.5 rollup: 2.75.5 rollup-plugin-external-globals: 0.6.1_rollup@2.75.5 sass: 1.52.2 - vite: 3.0.4_sass@1.52.2+terser@5.14.2 + vite: 3.1.3_sass@1.52.2+terser@5.14.2 vue-template-compiler: 2.7.4 runtime/vue3: @@ -563,7 +563,7 @@ importers: '@tmagic/ui': 1.1.4 '@tmagic/utils': 1.1.4 '@types/node': ^15.12.4 - '@vitejs/plugin-legacy': ^2.0.0 + '@vitejs/plugin-legacy': ^2.2.0 '@vitejs/plugin-vue': ^3.0.1 '@vitejs/plugin-vue-jsx': ^1.3.10 '@vue/compiler-sfc': ^3.2.37 @@ -575,7 +575,7 @@ importers: sass: ^1.35.1 terser: ^5.14.2 typescript: ^4.3.4 - vite: ^3.0.4 + vite: ^3.1.3 vue: ^3.2.37 vue-tsc: ^0.39.4 dependencies: @@ -585,14 +585,14 @@ importers: '@tmagic/stage': link:../../packages/stage '@tmagic/ui': link:../../packages/ui '@tmagic/utils': link:../../packages/utils - '@vitejs/plugin-legacy': 2.0.0_terser@5.14.2+vite@3.0.4 + '@vitejs/plugin-legacy': 2.2.0_terser@5.14.2+vite@3.1.3 '@vitejs/plugin-vue-jsx': 1.3.10 axios: 0.25.0 terser: 5.14.2 vue: 3.2.37 devDependencies: '@types/node': 15.14.9 - '@vitejs/plugin-vue': 3.0.1_vite@3.0.4+vue@3.2.37 + '@vitejs/plugin-vue': 3.0.1_vite@3.1.3+vue@3.2.37 '@vue/compiler-sfc': 3.2.37 '@vue/test-utils': 2.0.0_vue@3.2.37 recast: 0.20.5 @@ -600,7 +600,7 @@ importers: rollup-plugin-external-globals: 0.6.1_rollup@2.75.5 sass: 1.52.2 typescript: 4.7.4 - vite: 3.0.4_sass@1.52.2+terser@5.14.2 + vite: 3.1.3_sass@1.52.2+terser@5.14.2 vue-tsc: 0.39.4_typescript@4.7.4 packages: @@ -884,8 +884,8 @@ packages: regenerator-runtime: 0.13.9 dev: true - /@babel/standalone/7.18.10: - resolution: {integrity: sha512-0KWHiRX9TUHiWE+dKYYEOIiRJcPwGU6u8Bq/p+ldekj7Kew9PCwl4S4FTSEPpTrn3Vc+r3iRSaN1l9AcGgLx4Q==} + /@babel/standalone/7.19.2: + resolution: {integrity: sha512-p+U+TYGevnPUemfHeQVFwABp9kWe5+h20MKxCzvyeAD1SIm7tlvo6lGRFz1WakAxmVZvLz7WDuWjwdC8FZKp+A==} engines: {node: '>=6.9.0'} /@babel/template/7.16.7: @@ -1183,6 +1183,16 @@ packages: vue: 3.2.37 dev: false + /@esbuild/android-arm/0.15.8: + resolution: {integrity: sha512-CyEWALmn+no/lbgbAJsbuuhT8s2J19EJGHkeyAwjbFJMrj80KJ9zuYsoAvidPTU7BgBf87r/sgae8Tw0dbOc4Q==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dependencies: + esbuild-wasm: 0.15.8 + optional: true + /@esbuild/linux-loong64/0.15.5: resolution: {integrity: sha512-UHkDFCfSGTuXq08oQltXxSZmH1TXyWsL+4QhZDWvvLl6mEJQqk3u7/wq1LjhrrAXYIllaTtRSzUXl4Olkf2J8A==} engines: {node: '>=12'} @@ -1192,6 +1202,14 @@ packages: dev: false optional: true + /@esbuild/linux-loong64/0.15.8: + resolution: {integrity: sha512-pE5RQsOTSERCtfZdfCT25wzo7dfhOSlhAXcsZmuvRYhendOv7djcdvtINdnDp2DAjP17WXlBB4nBO6sHLczmsg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + optional: true + /@eslint/eslintrc/0.4.3: resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} engines: {node: ^10.12.0 || >=12.0.0} @@ -1414,7 +1432,7 @@ packages: css-to-mat: 1.0.3 framework-utils: 1.1.0 gesto: 1.8.1 - react-css-styled: 1.0.3 + react-css-styled: 1.0.3_@daybrush+utils@1.6.0 dev: false /@scena/react-ruler/0.8.1: @@ -1738,20 +1756,20 @@ packages: eslint-visitor-keys: 2.1.0 dev: true - /@vitejs/plugin-legacy/2.0.0_terser@5.14.2+vite@3.0.4: - resolution: {integrity: sha512-cuc45C4BQo2VlOsHZML4fc3MPfSjOEFeezHxr+WWlOOmi+muy1rz2snnFiePtyjVc1CYGTsnxk13cXpzQvMZaw==} - engines: {node: '>=14.18.0'} + /@vitejs/plugin-legacy/2.2.0_terser@5.14.2+vite@3.1.3: + resolution: {integrity: sha512-xkSXZl2LNk0KKyo5CJknNW84mSlmHIClFzsBuFXkX3yBt+Lr8UO/n4QOg2X7+jvurgBRies9FRn3ZvMem+TmIg==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: terser: ^5.4.0 vite: ^3.0.0 dependencies: - '@babel/standalone': 7.18.10 - core-js: 3.24.1 - magic-string: 0.26.2 + '@babel/standalone': 7.19.2 + core-js: 3.25.2 + magic-string: 0.26.3 regenerator-runtime: 0.13.9 - systemjs: 6.12.1 + systemjs: 6.12.6 terser: 5.14.2 - vite: 3.0.4_terser@5.14.2 + vite: 3.1.3_terser@5.14.2 /@vitejs/plugin-react-refresh/1.3.6: resolution: {integrity: sha512-iNR/UqhUOmFFxiezt0em9CgmiJBdWR+5jGxB2FihaoJfqGt76kiwaKoVOJVU5NYcDWMdN06LbyN2VIGIoYdsEA==} @@ -1791,25 +1809,25 @@ packages: vue: 3.2.37 dev: true - /@vitejs/plugin-vue/3.0.1_vite@3.0.4+vue@3.2.37: + /@vitejs/plugin-vue/3.0.1_vite@3.1.3+vue@3.2.37: resolution: {integrity: sha512-Ll9JgxG7ONIz/XZv3dssfoMUDu9qAnlJ+km+pBA0teYSXzwPCIzS/e1bmwNYl5dcQGs677D21amgfYAnzMl17A==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^3.0.0 vue: ^3.2.25 dependencies: - vite: 3.0.4 + vite: 3.1.3 vue: 3.2.37 dev: true - /@vitejs/plugin-vue2/1.1.2_vite@3.0.4+vue@2.7.4: + /@vitejs/plugin-vue2/1.1.2_vite@3.1.3+vue@2.7.4: resolution: {integrity: sha512-y6OEA+2UdJ0xrEQHodq20v9r3SpS62IOHrgN92JPLvVpNkhcissu7yvD5PXMzMESyazj0XNWGsc8UQk8+mVrjQ==} engines: {node: '>=14.6.0'} peerDependencies: vite: '>=2.5.10' vue: ^2.7.0-0 dependencies: - vite: 3.0.4_sass@1.52.2+terser@5.14.2 + vite: 3.1.3_sass@1.52.2+terser@5.14.2 vue: 2.7.4 dev: true @@ -3055,8 +3073,8 @@ packages: dependencies: safe-buffer: 5.1.2 - /core-js/3.24.1: - resolution: {integrity: sha512-0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg==} + /core-js/3.25.2: + resolution: {integrity: sha512-YB4IAT1bjEfxTJ1XYy11hJAKskO+qmhuDBM8/guIfMz4JvdsAQAqvyb97zXX7JgSrfPLG5mRGFWJwJD39ruq2A==} requiresBuild: true /core-util-is/1.0.3: @@ -3103,13 +3121,6 @@ packages: which: 2.0.2 dev: true - /css-styled/1.0.0: - resolution: {integrity: sha512-lDdPvM2/djv+La110zVY3RGQ7X4OOlzLS+IEjRcn8UlUmJd1+GNcGfDFmsKWwnLBupsY1w0QM1gRgV4RdcCjfw==} - dependencies: - '@daybrush/utils': 1.6.0 - string-hash: 1.1.3 - dev: false - /css-styled/1.0.0_@daybrush+utils@1.6.0: resolution: {integrity: sha512-lDdPvM2/djv+La110zVY3RGQ7X4OOlzLS+IEjRcn8UlUmJd1+GNcGfDFmsKWwnLBupsY1w0QM1gRgV4RdcCjfw==} peerDependencies: @@ -3119,6 +3130,15 @@ packages: string-hash: 1.1.3 dev: false + /css-styled/1.0.0_@daybrush+utils@1.7.1: + resolution: {integrity: sha512-lDdPvM2/djv+La110zVY3RGQ7X4OOlzLS+IEjRcn8UlUmJd1+GNcGfDFmsKWwnLBupsY1w0QM1gRgV4RdcCjfw==} + peerDependencies: + '@daybrush/utils': '>=1.0.0' + dependencies: + '@daybrush/utils': 1.7.1 + string-hash: 1.1.3 + dev: false + /css-to-mat/1.0.3: resolution: {integrity: sha512-HADRhVqPc8wFqEp6ClK+uuPYg+FMBinNo2ReLyI/KQCncmHPJ60o5zldyJG7NjsTqXWbdfGJO51jnoxfMvWJiA==} dependencies: @@ -3484,6 +3504,7 @@ packages: cpu: [x64] os: [android] requiresBuild: true + dev: true optional: true /esbuild-android-64/0.15.5: @@ -3495,12 +3516,23 @@ packages: dev: false optional: true + /esbuild-android-64/0.15.8: + resolution: {integrity: sha512-bVh8FIKOolF7/d4AMzt7xHlL0Ljr+mYKSHI39TJWDkybVWHdn6+4ODL3xZGHOxPpdRpitemXA1WwMKYBsw8dGw==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dependencies: + esbuild-wasm: 0.15.8 + optional: true + /esbuild-android-arm64/0.14.49: resolution: {integrity: sha512-g2HGr/hjOXCgSsvQZ1nK4nW/ei8JUx04Li74qub9qWrStlysaVmadRyTVuW32FGIpLQyc5sUjjZopj49eGGM2g==} engines: {node: '>=12'} cpu: [arm64] os: [android] requiresBuild: true + dev: true optional: true /esbuild-android-arm64/0.15.5: @@ -3512,12 +3544,21 @@ packages: dev: false optional: true + /esbuild-android-arm64/0.15.8: + resolution: {integrity: sha512-ReAMDAHuo0H1h9LxRabI6gwYPn8k6WiUeyxuMvx17yTrJO+SCnIfNc/TSPFvDwtK9MiyiKG/2dBYHouT/M0BXQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + optional: true + /esbuild-darwin-64/0.14.49: resolution: {integrity: sha512-3rvqnBCtX9ywso5fCHixt2GBCUsogNp9DjGmvbBohh31Ces34BVzFltMSxJpacNki96+WIcX5s/vum+ckXiLYg==} engines: {node: '>=12'} cpu: [x64] os: [darwin] requiresBuild: true + dev: true optional: true /esbuild-darwin-64/0.15.5: @@ -3529,12 +3570,21 @@ packages: dev: false optional: true + /esbuild-darwin-64/0.15.8: + resolution: {integrity: sha512-KaKcGfJ+yto7Fo5gAj3xwxHMd1fBIKatpCHK8znTJLVv+9+NN2/tIPBqA4w5rBwjX0UqXDeIE2v1xJP+nGEXgA==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + optional: true + /esbuild-darwin-arm64/0.14.49: resolution: {integrity: sha512-XMaqDxO846srnGlUSJnwbijV29MTKUATmOLyQSfswbK/2X5Uv28M9tTLUJcKKxzoo9lnkYPsx2o8EJcTYwCs/A==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] requiresBuild: true + dev: true optional: true /esbuild-darwin-arm64/0.15.5: @@ -3546,12 +3596,21 @@ packages: dev: false optional: true + /esbuild-darwin-arm64/0.15.8: + resolution: {integrity: sha512-8tjEaBgAKnXCkP7bhEJmEqdG9HEV6oLkF36BrMzpfW2rgaw0c48Zrxe+9RlfeGvs6gDF4w+agXyTjikzsS3izw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + optional: true + /esbuild-freebsd-64/0.14.49: resolution: {integrity: sha512-NJ5Q6AjV879mOHFri+5lZLTp5XsO2hQ+KSJYLbfY9DgCu8s6/Zl2prWXVANYTeCDLlrIlNNYw8y34xqyLDKOmQ==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] requiresBuild: true + dev: true optional: true /esbuild-freebsd-64/0.15.5: @@ -3563,12 +3622,21 @@ packages: dev: false optional: true + /esbuild-freebsd-64/0.15.8: + resolution: {integrity: sha512-jaxcsGHYzn2L0/lffON2WfH4Nc+d/EwozVTP5K2v016zxMb5UQMhLoJzvLgBqHT1SG0B/mO+a+THnJCMVg15zw==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + optional: true + /esbuild-freebsd-arm64/0.14.49: resolution: {integrity: sha512-lFLtgXnAc3eXYqj5koPlBZvEbBSOSUbWO3gyY/0+4lBdRqELyz4bAuamHvmvHW5swJYL7kngzIZw6kdu25KGOA==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] requiresBuild: true + dev: true optional: true /esbuild-freebsd-arm64/0.15.5: @@ -3580,12 +3648,21 @@ packages: dev: false optional: true + /esbuild-freebsd-arm64/0.15.8: + resolution: {integrity: sha512-2xp2UlljMvX8HExtcg7VHaeQk8OBU0CSl1j18B5CcZmSDkLF9p3utuMXIopG3a08fr9Hv+Dz6+seSXUow/G51w==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + optional: true + /esbuild-linux-32/0.14.49: resolution: {integrity: sha512-zTTH4gr2Kb8u4QcOpTDVn7Z8q7QEIvFl/+vHrI3cF6XOJS7iEI1FWslTo3uofB2+mn6sIJEQD9PrNZKoAAMDiA==} engines: {node: '>=12'} cpu: [ia32] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-32/0.15.5: @@ -3597,12 +3674,21 @@ packages: dev: false optional: true + /esbuild-linux-32/0.15.8: + resolution: {integrity: sha512-9u1E54BRz1FQMl86iaHK146+4ID2KYNxL3trLZT4QLLx3M7Q9n4lGG3lrzqUatGR2cKy8c33b0iaCzsItZWkFg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-64/0.14.49: resolution: {integrity: sha512-hYmzRIDzFfLrB5c1SknkxzM8LdEUOusp6M2TnuQZJLRtxTgyPnZZVtyMeCLki0wKgYPXkFsAVhi8vzo2mBNeTg==} engines: {node: '>=12'} cpu: [x64] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-64/0.15.5: @@ -3614,12 +3700,21 @@ packages: dev: false optional: true + /esbuild-linux-64/0.15.8: + resolution: {integrity: sha512-4HxrsN9eUzJXdVGMTYA5Xler82FuZUu21bXKN42zcLHHNKCAMPUzD62I+GwDhsdgUBAUj0tRXDdsQHgaP6v0HA==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-arm/0.14.49: resolution: {integrity: sha512-iE3e+ZVv1Qz1Sy0gifIsarJMQ89Rpm9mtLSRtG3AH0FPgAzQ5Z5oU6vYzhc/3gSPi2UxdCOfRhw2onXuFw/0lg==} engines: {node: '>=12'} cpu: [arm] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-arm/0.15.5: @@ -3631,12 +3726,21 @@ packages: dev: false optional: true + /esbuild-linux-arm/0.15.8: + resolution: {integrity: sha512-7DVBU9SFjX4+vBwt8tHsUCbE6Vvl6y6FQWHAgyw1lybC5gULqn/WnjHYHN2/LJaZRsDBvxWT4msEgwLGq1Wd3Q==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-arm64/0.14.49: resolution: {integrity: sha512-KLQ+WpeuY+7bxukxLz5VgkAAVQxUv67Ft4DmHIPIW+2w3ObBPQhqNoeQUHxopoW/aiOn3m99NSmSV+bs4BSsdA==} engines: {node: '>=12'} cpu: [arm64] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-arm64/0.15.5: @@ -3648,12 +3752,21 @@ packages: dev: false optional: true + /esbuild-linux-arm64/0.15.8: + resolution: {integrity: sha512-1OCm7Aq0tEJT70PbxmHSGYDLYP8DKH8r4Nk7/XbVzWaduo9beCjGBB+tGZIHK6DdTQ3h00/4Tb/70YMH/bOtKg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-mips64le/0.14.49: resolution: {integrity: sha512-n+rGODfm8RSum5pFIqFQVQpYBw+AztL8s6o9kfx7tjfK0yIGF6tm5HlG6aRjodiiKkH2xAiIM+U4xtQVZYU4rA==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-mips64le/0.15.5: @@ -3665,12 +3778,21 @@ packages: dev: false optional: true + /esbuild-linux-mips64le/0.15.8: + resolution: {integrity: sha512-yeFoNPVFPEzZvFYBfUQNG2TjGRaCyV1E27OcOg4LOtnGrxb2wA+mkW3luckyv1CEyd00mpAg7UdHx8nlx3ghgA==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-ppc64le/0.14.49: resolution: {integrity: sha512-WP9zR4HX6iCBmMFH+XHHng2LmdoIeUmBpL4aL2TR8ruzXyT4dWrJ5BSbT8iNo6THN8lod6GOmYDLq/dgZLalGw==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-ppc64le/0.15.5: @@ -3682,12 +3804,21 @@ packages: dev: false optional: true + /esbuild-linux-ppc64le/0.15.8: + resolution: {integrity: sha512-CEyMMUUNabXibw8OSNmBXhOIGhnjNVl5Lpseiuf00iKN0V47oqDrbo4dsHz1wH62m49AR8iG8wpDlTqfYgKbtg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-riscv64/0.14.49: resolution: {integrity: sha512-h66ORBz+Dg+1KgLvzTVQEA1LX4XBd1SK0Fgbhhw4akpG/YkN8pS6OzYI/7SGENiN6ao5hETRDSkVcvU9NRtkMQ==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-riscv64/0.15.5: @@ -3699,12 +3830,21 @@ packages: dev: false optional: true + /esbuild-linux-riscv64/0.15.8: + resolution: {integrity: sha512-OCGSOaspMUjexSCU8ZiA0UnV/NiRU+s2vIfEcAQWQ6u32R+2luyfh/4ZaY6jFbylJE07Esc/yRvb9Q5fXuClXA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + optional: true + /esbuild-linux-s390x/0.14.49: resolution: {integrity: sha512-DhrUoFVWD+XmKO1y7e4kNCqQHPs6twz6VV6Uezl/XHYGzM60rBewBF5jlZjG0nCk5W/Xy6y1xWeopkrhFFM0sQ==} engines: {node: '>=12'} cpu: [s390x] os: [linux] requiresBuild: true + dev: true optional: true /esbuild-linux-s390x/0.15.5: @@ -3716,12 +3856,21 @@ packages: dev: false optional: true + /esbuild-linux-s390x/0.15.8: + resolution: {integrity: sha512-RHdpdfxRTSrZXZJlFSLazFU4YwXLB5Rgf6Zr5rffqSsO4y9JybgtKO38bFwxZNlDXliYISXN/YROKrG9s7mZQA==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + optional: true + /esbuild-netbsd-64/0.14.49: resolution: {integrity: sha512-BXaUwFOfCy2T+hABtiPUIpWjAeWK9P8O41gR4Pg73hpzoygVGnj0nI3YK4SJhe52ELgtdgWP/ckIkbn2XaTxjQ==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] requiresBuild: true + dev: true optional: true /esbuild-netbsd-64/0.15.5: @@ -3733,12 +3882,21 @@ packages: dev: false optional: true + /esbuild-netbsd-64/0.15.8: + resolution: {integrity: sha512-VolFFRatBH09T5QMWhiohAWCOien1R1Uz9K0BRVVTBgBaVBt7eArsXTKxVhUgRf2vwu2c2SXkuP0r7HLG0eozw==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + optional: true + /esbuild-openbsd-64/0.14.49: resolution: {integrity: sha512-lP06UQeLDGmVPw9Rg437Btu6J9/BmyhdoefnQ4gDEJTtJvKtQaUcOQrhjTq455ouZN4EHFH1h28WOJVANK41kA==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] requiresBuild: true + dev: true optional: true /esbuild-openbsd-64/0.15.5: @@ -3750,12 +3908,21 @@ packages: dev: false optional: true + /esbuild-openbsd-64/0.15.8: + resolution: {integrity: sha512-HTAPlg+n4kUeE/isQxlCfsOz0xJGNoT5LJ9oYZWFKABfVf4Ycu7Zlf5ITgOnrdheTkz8JeL/gISIOCFAoOXrSA==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + optional: true + /esbuild-sunos-64/0.14.49: resolution: {integrity: sha512-4c8Zowp+V3zIWje329BeLbGh6XI9c/rqARNaj5yPHdC61pHI9UNdDxT3rePPJeWcEZVKjkiAS6AP6kiITp7FSw==} engines: {node: '>=12'} cpu: [x64] os: [sunos] requiresBuild: true + dev: true optional: true /esbuild-sunos-64/0.15.5: @@ -3767,12 +3934,28 @@ packages: dev: false optional: true + /esbuild-sunos-64/0.15.8: + resolution: {integrity: sha512-qMP/jR/FzcIOwKj+W+Lb+8Cfr8GZHbHUJxAPi7DUhNZMQ/6y7sOgRzlOSpRrbbUntrRZh0MqOyDhJ3Gpo6L1QA==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + optional: true + + /esbuild-wasm/0.15.8: + resolution: {integrity: sha512-Y7uCl5RNO4URjlemjdx++ukVHEMt5s5AfMWYUnMiK4Sry+pPCvQIctzXq6r6FKCyGKjX6/NGMCqR2OX6aLxj0w==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optional: true + /esbuild-windows-32/0.14.49: resolution: {integrity: sha512-q7Rb+J9yHTeKr9QTPDYkqfkEj8/kcKz9lOabDuvEXpXuIcosWCJgo5Z7h/L4r7rbtTH4a8U2FGKb6s1eeOHmJA==} engines: {node: '>=12'} cpu: [ia32] os: [win32] requiresBuild: true + dev: true optional: true /esbuild-windows-32/0.15.5: @@ -3784,12 +3967,21 @@ packages: dev: false optional: true + /esbuild-windows-32/0.15.8: + resolution: {integrity: sha512-RKR1QHh4iWzjUhkP8Yqi75PPz/KS+b8zw3wUrzw6oAkj+iU5Qtyj61ZDaSG3Qf2vc6hTIUiPqVTqBH0NpXFNwg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + optional: true + /esbuild-windows-64/0.14.49: resolution: {integrity: sha512-+Cme7Ongv0UIUTniPqfTX6mJ8Deo7VXw9xN0yJEN1lQMHDppTNmKwAM3oGbD/Vqff+07K2gN0WfNkMohmG+dVw==} engines: {node: '>=12'} cpu: [x64] os: [win32] requiresBuild: true + dev: true optional: true /esbuild-windows-64/0.15.5: @@ -3801,12 +3993,21 @@ packages: dev: false optional: true + /esbuild-windows-64/0.15.8: + resolution: {integrity: sha512-ag9ptYrsizgsR+PQE8QKeMqnosLvAMonQREpLw4evA4FFgOBMLEat/dY/9txbpozTw9eEOYyD3a4cE9yTu20FA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + optional: true + /esbuild-windows-arm64/0.14.49: resolution: {integrity: sha512-v+HYNAXzuANrCbbLFJ5nmO3m5y2PGZWLe3uloAkLt87aXiO2mZr3BTmacZdjwNkNEHuH3bNtN8cak+mzVjVPfA==} engines: {node: '>=12'} cpu: [arm64] os: [win32] requiresBuild: true + dev: true optional: true /esbuild-windows-arm64/0.15.5: @@ -3818,6 +4019,14 @@ packages: dev: false optional: true + /esbuild-windows-arm64/0.15.8: + resolution: {integrity: sha512-dbpAb0VyPaUs9mgw65KRfQ9rqiWCHpNzrJusoPu+LpEoswosjt/tFxN7cd2l68AT4qWdBkzAjDLRon7uqMeWcg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + optional: true + /esbuild/0.14.49: resolution: {integrity: sha512-/TlVHhOaq7Yz8N1OJrjqM3Auzo5wjvHFLk+T8pIue+fhnhIMpfAzsG6PLVMbFveVxqD2WOp3QHei+52IMUNmCw==} engines: {node: '>=12'} @@ -3844,6 +4053,7 @@ packages: esbuild-windows-32: 0.14.49 esbuild-windows-64: 0.14.49 esbuild-windows-arm64: 0.14.49 + dev: true /esbuild/0.15.5: resolution: {integrity: sha512-VSf6S1QVqvxfIsSKb3UKr3VhUCis7wgDbtF4Vd9z84UJr05/Sp2fRKmzC+CSPG/dNAPPJZ0BTBLTT1Fhd6N9Gg==} @@ -3874,6 +4084,35 @@ packages: esbuild-windows-arm64: 0.15.5 dev: false + /esbuild/0.15.8: + resolution: {integrity: sha512-Remsk2dmr1Ia65sU+QasE6svJbsHe62lzR+CnjpUvbZ+uSYo1SitiOWPRfZQkCu82YWZBBKXiD/j0i//XWMZ+Q==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.15.8 + '@esbuild/linux-loong64': 0.15.8 + esbuild-android-64: 0.15.8 + esbuild-android-arm64: 0.15.8 + esbuild-darwin-64: 0.15.8 + esbuild-darwin-arm64: 0.15.8 + esbuild-freebsd-64: 0.15.8 + esbuild-freebsd-arm64: 0.15.8 + esbuild-linux-32: 0.15.8 + esbuild-linux-64: 0.15.8 + esbuild-linux-arm: 0.15.8 + esbuild-linux-arm64: 0.15.8 + esbuild-linux-mips64le: 0.15.8 + esbuild-linux-ppc64le: 0.15.8 + esbuild-linux-riscv64: 0.15.8 + esbuild-linux-s390x: 0.15.8 + esbuild-netbsd-64: 0.15.8 + esbuild-openbsd-64: 0.15.8 + esbuild-sunos-64: 0.15.8 + esbuild-windows-32: 0.15.8 + esbuild-windows-64: 0.15.8 + esbuild-windows-arm64: 0.15.8 + /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} @@ -5391,8 +5630,8 @@ packages: dependencies: sourcemap-codec: 1.4.8 - /magic-string/0.26.2: - resolution: {integrity: sha512-NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A==} + /magic-string/0.26.3: + resolution: {integrity: sha512-u1Po0NDyFcwdg2nzHT88wSK0+Rih0N1M+Ph1Sp08k8yvFFU3KR72wryS7e1qMPJypt99WB7fIFVCA92mQrMjrg==} engines: {node: '>=12'} dependencies: sourcemap-codec: 1.4.8 @@ -5925,6 +6164,14 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 + /postcss/8.4.16: + resolution: {integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.4 + picocolors: 1.0.0 + source-map-js: 1.0.2 + /prelude-ls/1.1.2: resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} engines: {node: '>= 0.8.0'} @@ -6022,9 +6269,9 @@ packages: resolution: {integrity: sha512-CG0kVbpKjiLMQc85pP50+Z0R9PGp7NIkkGqO88QTjEsSMOGKYlCXIAnXdKR2ZII23NJmA4XrJry03jkXOxTUkg==} dependencies: '@daybrush/utils': 1.6.0 - css-styled: 1.0.0 + css-styled: 1.0.0_@daybrush+utils@1.6.0 framework-utils: 1.1.0 - react-css-styled: 1.0.3 + react-css-styled: 1.0.3_@daybrush+utils@1.6.0 dev: false /react-compat-guides/0.14.0: @@ -6049,7 +6296,7 @@ packages: gesto: 1.9.0 overlap-area: 1.0.0 react-compat-css-styled: 1.0.8 - react-css-styled: 1.0.3 + react-css-styled: 1.0.3_@daybrush+utils@1.7.1 react-moveable: 0.33.0 dev: false @@ -6060,11 +6307,22 @@ packages: react-simple-compat: 1.2.2 dev: false - /react-css-styled/1.0.3: + /react-css-styled/1.0.3_@daybrush+utils@1.6.0: resolution: {integrity: sha512-6H3aZPO66PYmYg9wx12WzOJpPlBEdA7O5JefCh+4SldlihVKBCxA6mityfWSGWL5ldOkJdHJWGwHR6nGPcVm+A==} dependencies: - css-styled: 1.0.0 + css-styled: 1.0.0_@daybrush+utils@1.6.0 framework-utils: 1.1.0 + transitivePeerDependencies: + - '@daybrush/utils' + dev: false + + /react-css-styled/1.0.3_@daybrush+utils@1.7.1: + resolution: {integrity: sha512-6H3aZPO66PYmYg9wx12WzOJpPlBEdA7O5JefCh+4SldlihVKBCxA6mityfWSGWL5ldOkJdHJWGwHR6nGPcVm+A==} + dependencies: + css-styled: 1.0.0_@daybrush+utils@1.7.1 + framework-utils: 1.1.0 + transitivePeerDependencies: + - '@daybrush/utils' dev: false /react-dom/17.0.2_react@17.0.2: @@ -6095,7 +6353,7 @@ packages: framework-utils: 1.1.0 gesto: 1.9.0 overlap-area: 1.0.0 - react-css-styled: 1.0.3 + react-css-styled: 1.0.3_@daybrush+utils@1.7.1 dev: false /react-refresh/0.10.0: @@ -6346,6 +6604,14 @@ packages: hasBin: true optionalDependencies: fsevents: 2.3.2 + dev: true + + /rollup/2.78.1: + resolution: {integrity: sha512-VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg==} + engines: {node: '>=10.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 /run-async/2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} @@ -6743,8 +7009,8 @@ packages: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} dev: true - /systemjs/6.12.1: - resolution: {integrity: sha512-hqTN6kW+pN6/qro6G9OZ7ceDQOcYno020zBQKpZQLsJhYTDMCMNfXi/Y8duF5iW+4WWZr42ry0MMkcRGpbwG2A==} + /systemjs/6.12.6: + resolution: {integrity: sha512-SawLiWya8/uNR4p12OggSYZ35tP4U4QTpfV57DdZEOPr6+J6zlLSeeEpMmzYTEoBAsMhctdEE+SWJUDYX4EaKw==} /table/6.8.0: resolution: {integrity: sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==} @@ -7132,8 +7398,8 @@ packages: fsevents: 2.3.2 dev: true - /vite/3.0.4_sass@1.52.2+terser@5.14.2: - resolution: {integrity: sha512-NU304nqnBeOx2MkQnskBQxVsa0pRAH5FphokTGmyy8M3oxbvw7qAXts2GORxs+h/2vKsD+osMhZ7An6yK6F1dA==} + /vite/3.1.3: + resolution: {integrity: sha512-/3XWiktaopByM5bd8dqvHxRt5EEgRikevnnrpND0gRfNkrMrPaGGexhtLCzv15RcCMtV2CLw+BPas8YFeSG0KA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -7151,18 +7417,73 @@ packages: terser: optional: true dependencies: - esbuild: 0.14.49 - postcss: 8.4.14 + esbuild: 0.15.8 + postcss: 8.4.16 resolve: 1.22.1 - rollup: 2.77.0 + rollup: 2.78.1 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /vite/3.1.3_sass@1.52.2: + resolution: {integrity: sha512-/3XWiktaopByM5bd8dqvHxRt5EEgRikevnnrpND0gRfNkrMrPaGGexhtLCzv15RcCMtV2CLw+BPas8YFeSG0KA==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + less: '*' + sass: '*' + stylus: '*' + terser: ^5.4.0 + peerDependenciesMeta: + less: + optional: true + sass: + optional: true + stylus: + optional: true + terser: + optional: true + dependencies: + esbuild: 0.15.8 + postcss: 8.4.16 + resolve: 1.22.1 + rollup: 2.78.1 + sass: 1.52.2 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /vite/3.1.3_sass@1.52.2+terser@5.14.2: + resolution: {integrity: sha512-/3XWiktaopByM5bd8dqvHxRt5EEgRikevnnrpND0gRfNkrMrPaGGexhtLCzv15RcCMtV2CLw+BPas8YFeSG0KA==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + less: '*' + sass: '*' + stylus: '*' + terser: ^5.4.0 + peerDependenciesMeta: + less: + optional: true + sass: + optional: true + stylus: + optional: true + terser: + optional: true + dependencies: + esbuild: 0.15.8 + postcss: 8.4.16 + resolve: 1.22.1 + rollup: 2.78.1 sass: 1.52.2 terser: 5.14.2 optionalDependencies: fsevents: 2.3.2 dev: true - /vite/3.0.4_terser@5.14.2: - resolution: {integrity: sha512-NU304nqnBeOx2MkQnskBQxVsa0pRAH5FphokTGmyy8M3oxbvw7qAXts2GORxs+h/2vKsD+osMhZ7An6yK6F1dA==} + /vite/3.1.3_terser@5.14.2: + resolution: {integrity: sha512-/3XWiktaopByM5bd8dqvHxRt5EEgRikevnnrpND0gRfNkrMrPaGGexhtLCzv15RcCMtV2CLw+BPas8YFeSG0KA==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -7180,10 +7501,10 @@ packages: terser: optional: true dependencies: - esbuild: 0.14.49 - postcss: 8.4.14 + esbuild: 0.15.8 + postcss: 8.4.16 resolve: 1.22.1 - rollup: 2.77.0 + rollup: 2.78.1 terser: 5.14.2 optionalDependencies: fsevents: 2.3.2 @@ -7223,7 +7544,7 @@ packages: local-pkg: 0.4.2 tinypool: 0.2.4 tinyspy: 1.0.0 - vite: 3.0.4 + vite: 3.1.3 transitivePeerDependencies: - less - sass diff --git a/runtime/react/dev.vite.config.ts b/runtime/react/dev.vite.config.ts index ae08656e..548ba3f7 100644 --- a/runtime/react/dev.vite.config.ts +++ b/runtime/react/dev.vite.config.ts @@ -43,6 +43,7 @@ export default defineConfig({ server: { host: '0.0.0.0', port: 8078, + strictPort: true, }, build: { diff --git a/runtime/react/package.json b/runtime/react/package.json index 5f400eb9..e3e2d7d5 100644 --- a/runtime/react/package.json +++ b/runtime/react/package.json @@ -38,10 +38,10 @@ "devDependencies": { "@types/react": "^17.0.37", "@types/react-dom": "^17.0.11", - "@vitejs/plugin-legacy": "^2.0.0", + "@vitejs/plugin-legacy": "^2.2.0", "@vitejs/plugin-react-refresh": "^1.3.1", "recast": "^0.20.4", "typescript": "^4.7.4", - "vite": "^3.0.4" + "vite": "^3.1.3" } } diff --git a/runtime/vue2/dev.vite.config.ts b/runtime/vue2/dev.vite.config.ts index 2a2d188e..9d182d62 100644 --- a/runtime/vue2/dev.vite.config.ts +++ b/runtime/vue2/dev.vite.config.ts @@ -42,6 +42,7 @@ export default defineConfig({ server: { host: '0.0.0.0', port: 8078, + strictPort: true, }, build: { diff --git a/runtime/vue2/package.json b/runtime/vue2/package.json index 4aa984a9..c1a4af20 100644 --- a/runtime/vue2/package.json +++ b/runtime/vue2/package.json @@ -37,8 +37,8 @@ "rollup": "^2.25.0", "rollup-plugin-external-globals": "^0.6.1", "sass": "^1.35.1", - "vite": "^3.0.4", - "@vitejs/plugin-legacy": "^2.0.0", + "vite": "^3.1.3", + "@vitejs/plugin-legacy": "^2.2.0", "@vitejs/plugin-vue2": "^1.1.2", "vue-template-compiler": "^2.7.4" } diff --git a/runtime/vue3/dev.vite.config.ts b/runtime/vue3/dev.vite.config.ts index 636ac8df..c4363dd4 100644 --- a/runtime/vue3/dev.vite.config.ts +++ b/runtime/vue3/dev.vite.config.ts @@ -43,6 +43,7 @@ export default defineConfig({ server: { host: '0.0.0.0', port: 8078, + strictPort: true, }, build: { diff --git a/runtime/vue3/package.json b/runtime/vue3/package.json index d3b247b3..fc0603a2 100644 --- a/runtime/vue3/package.json +++ b/runtime/vue3/package.json @@ -26,7 +26,7 @@ "@tmagic/schema": "1.1.4", "@tmagic/stage": "1.1.4", "@tmagic/utils": "1.1.4", - "@vitejs/plugin-legacy": "^2.0.0", + "@vitejs/plugin-legacy": "^2.2.0", "@vitejs/plugin-vue-jsx": "^1.3.10", "axios": "^0.25.0", "terser": "^5.14.2", @@ -34,7 +34,7 @@ }, "devDependencies": { "@types/node": "^15.12.4", - "@vitejs/plugin-vue": "^3.0.1", + "@vitejs/plugin-vue": "^3.1.0", "@vue/compiler-sfc": "^3.2.37", "@vue/test-utils": "^2.0.0", "recast": "^0.20.4", @@ -42,7 +42,7 @@ "rollup-plugin-external-globals": "^0.6.1", "sass": "^1.35.1", "typescript": "^4.3.4", - "vite": "^3.0.4", + "vite": "^3.1.3", "vue-tsc": "^0.39.4" } }