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

JSX refactor #7924

Merged
merged 26 commits into from
Aug 11, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
18e0b0e
JSX refactor
FredKSchott Jul 23, 2023
2c204e0
Get preact/compat test to pass
matthewp Aug 9, 2023
8401c4e
Use include config
matthewp Aug 9, 2023
5cd28e2
Remove old astro flavored markdown test
matthewp Aug 9, 2023
3983f31
Move babel dep to preact
matthewp Aug 9, 2023
baecc56
Merge branch 'next' into new-jsx
matthewp Aug 9, 2023
b241603
Remove errant debugger
matthewp Aug 9, 2023
50ec972
Update lockfile
matthewp Aug 9, 2023
c28021c
Update the multi-framework example
matthewp Aug 9, 2023
7410098
Update e2e tests
matthewp Aug 9, 2023
0b86a52
Fix nested-in-vue tests
matthewp Aug 9, 2023
93134eb
Add back in astro check
matthewp Aug 9, 2023
59a1371
Merge branch 'next' into new-jsx
matthewp Aug 10, 2023
e392757
Update packages/astro/src/core/create-vite.ts
matthewp Aug 10, 2023
608450e
Update packages/astro/src/core/create-vite.ts
matthewp Aug 10, 2023
38a7cbe
Update packages/integrations/solid/src/index.ts
matthewp Aug 10, 2023
7f661b9
Update packages/integrations/solid/src/index.ts
matthewp Aug 10, 2023
b1fc1ae
Update .changeset/perfect-horses-tell.md
matthewp Aug 10, 2023
0712188
Move the comment about the include config
matthewp Aug 10, 2023
a057bb4
Remove redundant alias config
matthewp Aug 10, 2023
d49a82b
Use react's own preamble code
matthewp Aug 10, 2023
e07a4e5
Use the base for the preamble
matthewp Aug 10, 2023
4d2750b
Remove solid redundancy
matthewp Aug 10, 2023
66dd04e
Update .changeset/perfect-horses-tell.md
matthewp Aug 11, 2023
4b2cc14
Update based on review comments
matthewp Aug 11, 2023
7626af2
Oops
matthewp Aug 11, 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
Prev Previous commit
Next Next commit
Move the comment about the include config
  • Loading branch information
matthewp committed Aug 10, 2023
commit 0712188846fc1bc4ec91861b3ca350e36df92af6
4 changes: 2 additions & 2 deletions .changeset/perfect-horses-tell.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Now, rather than scanning your components, JSX framework integrations accept `in

```js
export default defineConfig({
// The `include` config is only needed in projects that use multiple JSX frameworks;
// if only using one no extra config is needed.
integrations: [
preact({
include: ['**/preact/*']
Expand All @@ -23,5 +25,3 @@ export default defineConfig({
]
});
```

This config is only needed in projects that use multiple JSX frameworks; if only using one no config is needed.
Loading