|
24 | 24 | "lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern", |
25 | 25 | "lint:js:fix": "eslint . --fix",<% if (typescript) { %> |
26 | 26 | "lint:types": "glint",<% } %> |
27 | | - "start": "rollup --config --watch", |
28 | | - "test": "echo 'A v2 addon does not have tests, run tests in test-app'", |
| 27 | + "start": "vite dev", |
| 28 | + "test": "vite build --mode=development && testem --file testem.js ci", |
29 | 29 | "prepack": "rollup --config" |
30 | 30 | }, |
31 | 31 | "dependencies": { |
|
36 | 36 | "ember-source": ">= 4.12.0" |
37 | 37 | }, |
38 | 38 | "devDependencies": { |
39 | | - "@babel/core": "^7.25.2", |
40 | | - <% if (typescript) { %>"@babel/plugin-transform-typescript": "^7.25.2",<% } %> |
| 39 | + "@babel/core": "^7.25.2",<% if (typescript) { %>"@babel/plugin-transform-typescript": "^7.25.2",<% } %> |
41 | 40 | "@babel/eslint-parser": "^7.25.1", |
42 | 41 | "@babel/runtime": "^7.25.6", |
43 | | - "@eslint/js": "^9.17.0", |
44 | | - "@embroider/addon-dev": "^7.1.0",<% if (typescript) { %> |
| 42 | + "@embroider/addon-dev": "^7.1.0", |
| 43 | + "@embroider/core": "^4.0.0-alpha.10", |
| 44 | + "@embroider/macros": "^1.17.0-alpha.8", |
| 45 | + "@embroider/vite": "^1.0.0-alpha.12", |
| 46 | + "@ember/test-helpers": "^5.2.1", |
| 47 | + "@eslint/js": "^9.17.0",<% if (typescript) { %> |
45 | 48 | "@glint/core": "^1.4.0", |
46 | 49 | "@glint/environment-ember-loose": "^1.4.0", |
47 | 50 | "@glint/environment-ember-template-imports": "^1.4.0", |
|
50 | 53 | "@rollup/plugin-babel": "^6.0.4", |
51 | 54 | "babel-plugin-ember-template-compilation": "^2.2.5", |
52 | 55 | "concurrently": "^9.0.1", |
53 | | - "ember-source": "^5.4.0", |
| 56 | + "ember-source": "^6.3.0", |
| 57 | + "ember-resolver": "^13.1.0", |
54 | 58 | "ember-template-lint": "^6.0.0", |
| 59 | + "ember-qunit": "^9.0.2", |
55 | 60 | "eslint": "^9.17.0", |
56 | 61 | "eslint-config-prettier": "^9.1.0", |
57 | 62 | "eslint-plugin-ember": "^12.3.3", |
|
61 | 66 | "prettier": "^3.4.2", |
62 | 67 | "prettier-plugin-ember-template-tag": "^2.0.4", |
63 | 68 | "rollup": "^4.22.5", |
64 | | - "rollup-plugin-copy": "^3.5.0"<% if (typescript) { %>, |
| 69 | + "qunit": "^2.24.1", |
| 70 | + "qunit-dom": "^3.4.0", |
| 71 | + "vite": "^6.2.4"<% if (typescript) { %>, |
65 | 72 | "typescript-eslint": "^8.19.1", |
66 | 73 | "typescript": "~5.6.0"<% } %> |
67 | 74 | }, |
|
0 commit comments