chore(deps): update all non-major dependencies (#656)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
This commit is contained in:
renovate[bot] 2023-07-10 14:16:33 +08:00 committed by GitHub
parent ae38332e63
commit 1220687593
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 551 additions and 817 deletions

View File

@ -1,6 +1,6 @@
{ {
"private": true, "private": true,
"packageManager": "pnpm@8.6.5", "packageManager": "pnpm@8.6.7",
"scripts": { "scripts": {
"build": "pnpm run -r build", "build": "pnpm run -r build",
"test": "vitest", "test": "vitest",
@ -17,9 +17,9 @@
"devDependencies": { "devDependencies": {
"@rollup/plugin-babel": "^6.0.3", "@rollup/plugin-babel": "^6.0.3",
"@types/babel__core": "^7.20.1", "@types/babel__core": "^7.20.1",
"@types/node": "^20.3.3", "@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.60.1", "@typescript-eslint/eslint-plugin": "^5.61.0",
"@vitest/coverage-v8": "^0.32.2", "@vitest/coverage-v8": "^0.33.0",
"bumpp": "^9.1.1", "bumpp": "^9.1.1",
"eslint": "^8.44.0", "eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0", "eslint-config-prettier": "^8.8.0",
@ -28,8 +28,8 @@
"prettier": "^2.8.8", "prettier": "^2.8.8",
"tsup": "^7.1.0", "tsup": "^7.1.0",
"typescript": "^5.1.3", "typescript": "^5.1.3",
"vite": "^4.3.9", "vite": "^4.4.2",
"vitest": "^0.32.2" "vitest": "^0.33.0"
}, },
"version": "1.1.5" "version": "1.1.5"
} }

View File

@ -26,7 +26,7 @@
"@babel/helper-module-imports": "^7.22.5", "@babel/helper-module-imports": "^7.22.5",
"@babel/plugin-syntax-jsx": "^7.22.5", "@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/template": "^7.22.5", "@babel/template": "^7.22.5",
"@babel/traverse": "^7.22.5", "@babel/traverse": "^7.22.8",
"@babel/types": "^7.22.5", "@babel/types": "^7.22.5",
"@vue/babel-helper-vue-transform-on": "workspace:^", "@vue/babel-helper-vue-transform-on": "workspace:^",
"camelcase": "^6.3.0", "camelcase": "^6.3.0",
@ -34,8 +34,8 @@
"svg-tags": "^1.0.0" "svg-tags": "^1.0.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.22.5", "@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.5", "@babel/preset-env": "^7.22.7",
"@types/babel__template": "^7.4.1", "@types/babel__template": "^7.4.1",
"@types/babel__traverse": "^7.20.1", "@types/babel__traverse": "^7.20.1",
"@types/svg-tags": "^1.0.0", "@types/svg-tags": "^1.0.0",

View File

@ -8,9 +8,9 @@
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {
"@babel/core": "^7.22.5", "@babel/core": "^7.22.8",
"@vue/babel-plugin-jsx": "workspace:*", "@vue/babel-plugin-jsx": "workspace:*",
"monaco-editor": "^0.39.0", "monaco-editor": "^0.40.0",
"vue": "^3.3.4" "vue": "^3.3.4"
}, },
"devDependencies": { "devDependencies": {

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,9 @@ import { babel } from '@rollup/plugin-babel';
import Jsx from './packages/babel-plugin-jsx/src'; import Jsx from './packages/babel-plugin-jsx/src';
export default defineConfig({ export default defineConfig({
esbuild: {
jsx: 'preserve',
},
plugins: [ plugins: [
babel({ babel({
babelHelpers: 'bundled', babelHelpers: 'bundled',