Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to vite 5 #1530

Merged
merged 3 commits into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmark/benchmarks/krausest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"devDependencies": {
"@types/node": "^20.9.4",
"eslint": "^8.52.0",
"vite": "^4.3.9"
"vite": "^5.0.10"
},
"engines": {
"node": ">=18.0.0"
Expand Down
34 changes: 19 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@
"name": "glimmer-engine",
"version": "0.85.13",
"private": true,
"license": "MIT",
"description": "Glimmer compiles Handlebars templates into document fragments rather than string buffers",
"repository": {
"type": "git",
"url": "https://github.com/glimmerjs/glimmer-vm.git"
},
"license": "MIT",
"author": "Tilde, Inc.",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"clean": "node ./bin/clean.mjs",
"benchmark:build": "node benchmark/bin/build.js",
"benchmark:control": "node benchmark/bin/control.js",
"benchmark:experiment": "node benchmark/bin/experiment.js",
Expand All @@ -20,36 +22,41 @@
"build": "dotenv -- turbo build",
"build:control": "rollup -c rollup.config.mjs",
"build:flags": "RETAIN_FLAGS=true ember build --env production --suppress-sizes",
"clean": "node ./bin/clean.mjs",
"link:all": "esyes ./bin/link-all.mts",
"lint": "npm-run-all lint:*",
"lint:format": "prettier -c .",
"lint:files": "turbo lint",
"lint:format": "prettier -c .",
"lint:types": "tsc -b",
"lintfix": "pnpm turbo test:lint -- --fix && prettier -w .",
"start": "ember serve --port=7357",
"test": "node bin/run-tests.mjs",
"test:babel-plugins": "yarn workspace @glimmer/vm-babel-plugins test",
"test:browserstack": "ember test --test-port=7774 --host 127.0.0.1 --config-file=testem-browserstack.js",
"test:node": "node bin/run-node-tests.mjs",
"test:babel-plugins": "yarn workspace @glimmer/vm-babel-plugins test",
"test:smoke": "SMOKE_TESTS=true ember test",
"test:types": "node bin/run-types-tests.mjs",
"unlink:all": "esyes ./bin/unlink-all.mts"
},
"pnpm": {
"overrides": {
"typescript": "$typescript",
"@rollup/pluginutils": "^5.0.2",
"@types/node": "$@types/node"
"@types/node": "$@types/node",
"typescript": "$typescript"
},
"patchedDependencies": {
"@release-it-plugins/[email protected]": "patches/@[email protected]"
},
"peerDependencyRules": {
"allowAny": [
"vite-plugin-babel",
"vite"
],
"allowedVersions": {
"typescript": "5",
"@rollup/pluginutils": "5",
"rollup": "3"
"rollup": "3",
"typescript": "5"
}
},
"patchedDependencies": {
"@release-it-plugins/[email protected]": "patches/@[email protected]"
}
},
"devDependencies": {
Expand Down Expand Up @@ -118,12 +125,9 @@
"ts-node": "^10.9.1",
"turbo": "^1.9.3",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vite": "^5.0.10",
"xo": "^0.54.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"@release-it-plugins/workspaces": {
Expand Down
2 changes: 1 addition & 1 deletion packages/@glimmer-workspace/build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-ts": "^3.4.5",
"unplugin-fonts": "^1.0.3",
"vite": "4.3.9"
"vite": "^5.0.10"
},
"devDependencies": {
"@types/node": "^20.9.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"private": true,
"dependencies": {
"@types/qunit": "^2.19.9",
"vite": "^4.3.9"
"vite": "^5.0.10"
}
}
Loading
Loading