Skip to content

Commit 6db71b2

Browse files
authored
Merge branch 'main' into edison/fix/12181
2 parents ea53ad1 + ed01d92 commit 6db71b2

File tree

5 files changed

+263
-260
lines changed

5 files changed

+263
-260
lines changed

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"version": "3.5.12",
4-
"packageManager": "[email protected].1",
4+
"packageManager": "[email protected].2",
55
"type": "module",
66
"scripts": {
77
"dev": "node scripts/dev.js",
@@ -62,13 +62,13 @@
6262
"@babel/parser": "catalog:",
6363
"@babel/types": "catalog:",
6464
"@rollup/plugin-alias": "^5.1.1",
65-
"@rollup/plugin-commonjs": "^28.0.0",
65+
"@rollup/plugin-commonjs": "^28.0.1",
6666
"@rollup/plugin-json": "^6.1.0",
6767
"@rollup/plugin-node-resolve": "^15.3.0",
6868
"@rollup/plugin-replace": "5.0.4",
69-
"@swc/core": "^1.7.35",
69+
"@swc/core": "^1.7.36",
7070
"@types/hash-sum": "^1.0.2",
71-
"@types/node": "^20.16.11",
71+
"@types/node": "^20.16.13",
7272
"@types/semver": "^7.5.8",
7373
"@types/serve-handler": "^6.1.4",
7474
"@vitest/coverage-v8": "^2.1.1",
@@ -77,7 +77,7 @@
7777
"enquirer": "^2.4.1",
7878
"esbuild": "^0.24.0",
7979
"esbuild-plugin-polyfill-node": "^0.3.0",
80-
"eslint": "^9.12.0",
80+
"eslint": "^9.13.0",
8181
"eslint-plugin-import-x": "^4.3.1",
8282
"@vitest/eslint-plugin": "^1.0.1",
8383
"estree-walker": "catalog:",
@@ -87,8 +87,8 @@
8787
"magic-string": "^0.30.12",
8888
"markdown-table": "^3.0.3",
8989
"marked": "13.0.3",
90-
"npm-run-all2": "^6.2.3",
91-
"picocolors": "^1.1.0",
90+
"npm-run-all2": "^6.2.6",
91+
"picocolors": "^1.1.1",
9292
"prettier": "^3.3.3",
9393
"pretty-bytes": "^6.1.1",
9494
"pug": "^3.0.3",
@@ -99,13 +99,13 @@
9999
"rollup-plugin-esbuild": "^6.1.1",
100100
"rollup-plugin-polyfill-node": "^0.13.0",
101101
"semver": "^7.6.3",
102-
"serve": "^14.2.3",
103-
"serve-handler": "^6.1.5",
102+
"serve": "^14.2.4",
103+
"serve-handler": "^6.1.6",
104104
"simple-git-hooks": "^2.11.1",
105105
"todomvc-app-css": "^2.4.3",
106-
"tslib": "^2.7.0",
106+
"tslib": "^2.8.0",
107107
"typescript": "~5.6.2",
108-
"typescript-eslint": "^8.8.1",
108+
"typescript-eslint": "^8.10.0",
109109
"vite": "catalog:",
110110
"vitest": "^2.1.1"
111111
},

packages-private/sfc-playground/src/download/template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
},
1313
"devDependencies": {
1414
"@vitejs/plugin-vue": "^5.1.4",
15-
"vite": "^5.4.8"
15+
"vite": "^5.4.9"
1616
}
1717
}

packages/compiler-sfc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@
6262
"postcss-modules": "^6.0.0",
6363
"postcss-selector-parser": "^6.1.2",
6464
"pug": "^3.0.3",
65-
"sass": "^1.79.5"
65+
"sass": "^1.80.3"
6666
}
6767
}

packages/vue/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
- For use with bundlers like `webpack`, `rollup` and `parcel`.
2626
- Leaves prod/dev branches with `process.env.NODE_ENV` guards (must be replaced by bundler)
2727
- Does not ship minified builds (to be done together with the rest of the code after bundling)
28-
- Imports dependencies (e.g. `@vue/runtime-core`, `@vue/runtime-compiler`)
28+
- Imports dependencies (e.g. `@vue/runtime-core`, `@vue/compiler-core`)
2929
- Imported dependencies are also `esm-bundler` builds and will in turn import their dependencies (e.g. `@vue/runtime-core` imports `@vue/reactivity`)
3030
- This means you **can** install/import these deps individually without ending up with different instances of these dependencies, but you must make sure they all resolve to the same version.
3131
- In-browser template compilation:

0 commit comments

Comments
 (0)