Skip to content

Commit

Permalink
feat(compiler-core): support const modifier in type parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Mar 18, 2023
1 parent 650f5c2 commit 729fddf
Show file tree
Hide file tree
Showing 6 changed files with 100 additions and 99 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
"node": ">=16.11.0"
},
"devDependencies": {
"@babel/parser": "^7.20.15",
"@babel/types": "^7.20.7",
"@babel/parser": "^7.21.3",
"@babel/types": "^7.21.3",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@rollup/plugin-alias": "^4.0.3",
"@rollup/plugin-commonjs": "^23.0.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/compiler-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-core#readme",
"dependencies": {
"@babel/parser": "^7.21.3",
"@vue/shared": "3.3.0-alpha.4",
"@babel/parser": "^7.20.15",
"estree-walker": "^2.0.2",
"source-map": "^0.6.1"
},
"devDependencies": {
"@babel/types": "^7.16.0"
"@babel/types": "^7.21.3"
}
}
14 changes: 7 additions & 7 deletions packages/compiler-sfc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,28 +32,28 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-sfc#readme",
"dependencies": {
"@babel/parser": "^7.20.15",
"@babel/parser": "^7.21.3",
"@vue/compiler-core": "3.3.0-alpha.4",
"@vue/compiler-dom": "3.3.0-alpha.4",
"@vue/compiler-ssr": "3.3.0-alpha.4",
"@vue/reactivity-transform": "3.3.0-alpha.4",
"@vue/shared": "3.3.0-alpha.4",
"estree-walker": "^2.0.2",
"magic-string": "^0.27.0",
"source-map": "^0.6.1",
"postcss": "^8.1.10"
"postcss": "^8.1.10",
"source-map": "^0.6.1"
},
"devDependencies": {
"@babel/types": "^7.21.3",
"@types/estree": "^0.0.48",
"@babel/types": "^7.16.0",
"@types/lru-cache": "^5.1.0",
"pug": "^3.0.1",
"sass": "^1.26.9",
"@vue/consolidate": "^0.17.3",
"hash-sum": "^2.0.0",
"lru-cache": "^5.1.1",
"merge-source-map": "^1.1.0",
"postcss-modules": "^4.0.0",
"postcss-selector-parser": "^6.0.4"
"postcss-selector-parser": "^6.0.4",
"pug": "^3.0.1",
"sass": "^1.26.9"
}
}
6 changes: 3 additions & 3 deletions packages/reactivity-transform/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
},
"homepage": "https://github.com/vuejs/core/tree/dev/packages/reactivity-transform#readme",
"dependencies": {
"@babel/parser": "^7.20.15",
"@babel/parser": "^7.21.3",
"@vue/compiler-core": "3.3.0-alpha.4",
"@vue/shared": "3.3.0-alpha.4",
"estree-walker": "^2.0.2",
"magic-string": "^0.27.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/types": "^7.20.7"
"@babel/core": "^7.21.3",
"@babel/types": "^7.21.3"
}
}
2 changes: 1 addition & 1 deletion packages/vue-compat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/vue-compat#readme",
"dependencies": {
"@babel/parser": "^7.16.4",
"@babel/parser": "^7.21.3",
"estree-walker": "^2.0.2",
"source-map": "^0.6.1"
},
Expand Down
Loading

0 comments on commit 729fddf

Please sign in to comment.