Skip to content

Commit 2595eee

Browse files
Merge pull request #93 from ember-cli/nvp/upgrade-vite
Upgrade all dependencies
2 parents 33e14d9 + 09d8602 commit 2595eee

1 file changed

Lines changed: 19 additions & 29 deletions

File tree

files/package.json

Lines changed: 19 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
2323
"lint:js": "eslint . --cache",
2424
"lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
25-
"lint:js:fix": "eslint . --fix",<% if (typescript) { %>
26-
"lint:types": "ember-tsc --noEmit",<% } %>
25+
"lint:js:fix": "eslint . --fix<% if (typescript) { %>",
26+
"lint:types": "ember-tsc --noEmit<% } %>",
2727
"start": "vite dev",
2828
"test": "vite build --mode=development --out-dir dist-tests && testem --file testem.cjs ci --port 0",
2929
"prepack": "rollup --config"
@@ -34,8 +34,8 @@
3434
},
3535
"devDependencies": {
3636
"@babel/core": "^7.25.2",
37-
"@babel/eslint-parser": "^7.25.1",<% if (typescript) { %>
38-
"@babel/plugin-transform-typescript": "^7.25.2",<% } %>
37+
"@babel/eslint-parser": "^7.25.1<% if (typescript) { %>",
38+
"@babel/plugin-transform-typescript": "^7.25.2<% } %>",
3939
"@babel/runtime": "^7.25.6",
4040
"@ember/app-tsconfig": "^1.0.0",
4141
"@ember/library-tsconfig": "^1.0.0",
@@ -47,16 +47,16 @@
4747
"@embroider/macros": "^1.18.0",
4848
"@embroider/vite": "^1.1.5",
4949
"@eslint/js": "^9.17.0",
50-
"@glimmer/component": "^2.0.0",<% if (typescript) { %>
50+
"@glimmer/component": "^2.0.0<% if (typescript) { %>",
5151
"@glint/ember-tsc": "^1.0.3",
5252
"@glint/template": "^1.6.1",
53-
"@glint/tsserver-plugin": "^2.0.0",<% } %>
54-
"@rollup/plugin-babel": "^6.0.4",<% if (typescript) { %>
55-
"@types/qunit": "^2.19.12",<% } %>
53+
"@glint/tsserver-plugin": "^2.0.0<% } %>",
54+
"@rollup/plugin-babel": "^6.0.4<% if (typescript) { %>",
55+
"@types/qunit": "^2.19.12<% } %>",
5656
"babel-plugin-ember-template-compilation": "^2.2.5",
5757
"concurrently": "^9.0.1",
5858
"ember-qunit": "^9.0.2",
59-
"ember-source": "^6.3.0",
59+
"ember-source": "^6.7.0",
6060
"ember-strict-application-resolver": "^0.1.0",
6161
"ember-template-lint": "^7.9.0",
6262
"eslint": "^9.17.0",
@@ -70,10 +70,10 @@
7070
"qunit": "^2.24.1",
7171
"qunit-dom": "^3.4.0",
7272
"rollup": "^4.22.5",
73-
"testem": "^3.15.1",<% if (typescript) { %>
73+
"testem": "^3.15.1<% if (typescript) { %>",
7474
"typescript": "~5.8.3",
75-
"typescript-eslint": "^8.19.1",<% } %>
76-
"vite": "^6.2.4"
75+
"typescript-eslint": "^8.19.1<% } %>",
76+
"vite": "^7.1.9"
7777
},
7878
"ember": {
7979
"edition": "octane"
@@ -86,26 +86,16 @@
8686
"imports": {
8787
"#src/*": "./src/*"
8888
},
89-
"exports": {<% if (typescript) { %>
89+
"exports": {
9090
".": {
91-
"types": "./declarations/index.d.ts",
92-
"default": "./dist/index.js"
91+
"<% if (typescript) { %>types": "./declarations/index.d.ts",
92+
"<% } %> default": "./dist/index.js"
9393
},
94+
"./addon-main.js": "./addon-main.cjs",
9495
"./*.css": "./dist/*.css",
9596
"./*": {
96-
"types": "./declarations/*.d.ts",
97-
"default": "./dist/*.js"
98-
},<% } else { %>
99-
".": "./dist/index.js",
100-
"./*.css": "./dist/*.css",
101-
"./*": "./dist/*.js",<% } %>
102-
"./addon-main.js": "./addon-main.cjs"
103-
}<% if (typescript) { %>,
104-
"typesVersions": {
105-
"*": {
106-
"*": [
107-
"declarations/*"
108-
]
97+
"<% if (typescript) { %>types": "./declarations/*.d.ts",
98+
"<% } %>default": "./dist/*.js"
10999
}
110-
}<% } %>
100+
}
111101
}

0 commit comments

Comments
 (0)