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

vite dev/test/build from app #1695

Closed
wants to merge 55 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
43ff779
vite load from app
patricklx Nov 27, 2023
c124d5c
wip
patricklx Nov 27, 2023
40aaaa5
wip
patricklx Nov 29, 2023
bc0a0c0
vite load from app
patricklx Nov 27, 2023
aca0506
* generate entry file
patricklx Dec 4, 2023
870d431
working tests
patricklx Dec 4, 2023
ce408fd
prevent loop in vite build
patricklx Dec 4, 2023
238fa38
fix vite test
patricklx Dec 4, 2023
7752af1
fix vite test
patricklx Dec 4, 2023
eff2fdd
fix build
patricklx Dec 5, 2023
53fcc85
add build file
patricklx Dec 5, 2023
abfeab4
fix lint
patricklx Dec 5, 2023
3aa2856
fix lint
patricklx Dec 5, 2023
4239dda
revert
patricklx Dec 5, 2023
3883e96
revert
patricklx Dec 5, 2023
effd7e6
fix lock file
patricklx Dec 5, 2023
19d9eac
fix pkg
patricklx Dec 5, 2023
4fa0ea6
lets try it like this
patricklx Dec 5, 2023
9037607
needs path param
patricklx Dec 5, 2023
3fb1b9f
showcase .ts resolution
patricklx Dec 5, 2023
4576246
fix tests
patricklx Dec 5, 2023
77b5e49
its 3 now?
patricklx Dec 5, 2023
7e8b484
check isV2Addon
patricklx Dec 6, 2023
6ab75f3
update
patricklx Dec 7, 2023
4e56d5b
improvements when switching between app and tests
patricklx Dec 7, 2023
c700d68
add comments
patricklx Dec 7, 2023
9bf2ab5
fix internals
patricklx Dec 7, 2023
aa15b34
fix
patricklx Dec 7, 2023
9c4bf45
fix
patricklx Dec 7, 2023
43bc194
better windows compat
patricklx Dec 8, 2023
460bf6e
add tests with vite
patricklx Dec 8, 2023
c67aa71
fix
patricklx Dec 8, 2023
0874108
fix
patricklx Dec 8, 2023
e3b6227
fix
patricklx Dec 8, 2023
16d1dd8
fix
patricklx Dec 8, 2023
b9ddc23
fix env
patricklx Dec 8, 2023
7f160ac
re-add addons, otherwise I get duplicates for glimmer-vm, which does …
patricklx Dec 9, 2023
a58c41b
resolve ts gjs gts extensions
patricklx Dec 9, 2023
a12e437
resolve components helpers with explicit extensions
patricklx Dec 9, 2023
8aabfac
ts resolving
patricklx Dec 9, 2023
0b2d0d7
update
patricklx Dec 11, 2023
a0f5f64
fix lint
patricklx Dec 11, 2023
6c38e0f
remove package hack
patricklx Dec 11, 2023
69b633c
fix env update
patricklx Dec 11, 2023
0b596f6
fix lint
patricklx Dec 11, 2023
ac7ee5e
revert
patricklx Dec 11, 2023
15a1f53
fix lock
patricklx Dec 11, 2023
dfbdf35
fix lock
patricklx Dec 11, 2023
74b64d0
fix types
patricklx Dec 11, 2023
a25434c
fix eslint
patricklx Dec 11, 2023
a2980e7
fix
patricklx Dec 12, 2023
149d5b7
virtualize
patricklx Dec 13, 2023
a9c2869
wip
patricklx Dec 13, 2023
475ca54
fix
patricklx Dec 13, 2023
a4c0c2e
fix
patricklx Dec 14, 2023
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
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"scripts": {
"clean": "git clean -x -f",
"compile": "tsc",
"dev": "tsc --watch",
"lint": "concurrently 'npm:lint:*(!fix)' --names 'lint:'",
"lint:fix": "concurrently 'npm:lint:*:fix' --names 'fix:'",
"lint:eslint": "eslint . --cache --report-unused-disable-directives",
Expand Down
6 changes: 4 additions & 2 deletions packages/compat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@
"tree-sync": "^2.1.0",
"typescript-memoize": "^1.0.1",
"walk-sync": "^3.0.0",
"yargs": "^17.0.1"
"yargs": "^17.0.1",
"fast-glob": "^3.3.2"
},
"devDependencies": {
"@embroider/core": "workspace:^",
Expand Down Expand Up @@ -91,7 +92,8 @@
"typescript": "^5.1.6"
},
"peerDependencies": {
"@embroider/core": "workspace:^"
"@embroider/core": "workspace:^",
"ember-cli": "*"
},
"engines": {
"node": "12.* || 14.* || >= 16"
Expand Down
Loading