Skip to content

Commit

Permalink
fix: type import
Browse files Browse the repository at this point in the history
  • Loading branch information
PuruVJ committed Sep 18, 2023
1 parent 110012e commit 84487bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/repl/src/lib/Output/Compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default class Compiler {

/**
* @param {import('$lib/types').File} file
* @param {import('svelte/types/compiler').CompileOptions} options
* @param {import('svelte/compiler').CompileOptions} options
* @param {boolean} return_ast
* @returns
*/
Expand All @@ -57,12 +57,12 @@ export default class Compiler {
options: Object.assign(
{
name: file.name,
filename: `${file.name}.svelte`,
filename: `${file.name}.svelte`
},
options
),
entry: file.name === 'App',
return_ast,
return_ast
});
});
}
Expand Down

2 comments on commit 84487bd

@vercel
Copy link

@vercel vercel bot commented on 84487bd Sep 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

repl – ./packages/repl

svelte-rappel.vercel.app
repl-git-master-svelte.vercel.app
repl-svelte.vercel.app
repl-zeta.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 84487bd Sep 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

hn – ./sites/hn.svelte.dev

hn-git-master-svelte.vercel.app
sites-zeta.vercel.app
hn.svelte.dev
hn-svelte.vercel.app

Please sign in to comment.