Skip to content

Commit

Permalink
Update lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
remcohaszing committed Mar 26, 2024
1 parent 6c4e199 commit 2ac0959
Show file tree
Hide file tree
Showing 8 changed files with 737 additions and 554 deletions.
3 changes: 2 additions & 1 deletion fixtures/default/expected.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/*@jsxRuntime automatic @jsxImportSource react*/
/*@jsxRuntime automatic*/
/*@jsxImportSource react*/
export const frontmatter = {
title: 'Hello frontmatter',
index: 1,
Expand Down
3 changes: 2 additions & 1 deletion fixtures/named/expected.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/*@jsxRuntime automatic @jsxImportSource react*/
/*@jsxRuntime automatic*/
/*@jsxImportSource react*/
export const frontmatter = {
title: 'Hello frontmatter',
index: 1,
Expand Down
3 changes: 2 additions & 1 deletion fixtures/null/expected.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/*@jsxRuntime automatic @jsxImportSource react*/
/*@jsxRuntime automatic*/
/*@jsxImportSource react*/
export const frontmatter = null
function _createMdxContent(props) {
return <></>
Expand Down
3 changes: 2 additions & 1 deletion fixtures/toml-with-content/expected.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/*@jsxRuntime automatic @jsxImportSource react*/
/*@jsxRuntime automatic*/
/*@jsxImportSource react*/
export const frontmatter = {
__proto__: null,
title: 'Hello TOML'
Expand Down
3 changes: 2 additions & 1 deletion fixtures/toml/expected.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/*@jsxRuntime automatic @jsxImportSource react*/
/*@jsxRuntime automatic*/
/*@jsxImportSource react*/
export const frontmatter = {
__proto__: null,
title: 'Hello TOML'
Expand Down
3 changes: 2 additions & 1 deletion fixtures/undefined-named/expected.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/*@jsxRuntime automatic @jsxImportSource react*/
/*@jsxRuntime automatic*/
/*@jsxImportSource react*/
export const frontmatter = undefined
function _createMdxContent(props) {
return <></>
Expand Down
1,270 changes: 723 additions & 547 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ test('custom parser', async () => {

assertEqual(
String(value),
`/*@jsxRuntime automatic @jsxImportSource react*/
`/*@jsxRuntime automatic*/
/*@jsxImportSource react*/
export const frontmatter = {
"content": "foo: bar"
};
Expand Down

0 comments on commit 2ac0959

Please sign in to comment.