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

Implement logging framework #88

Merged
6 changes: 3 additions & 3 deletions src/echo-app/internal/bump-dev-plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fs.writeFileSync(
* This plugins are used in dev mode - via 'npm run dev'
* All of these plugins have HMR enabled, regardless of whether you only have the plugins folder open
*/
export const DEV_PLUGINS = [
${allActivePlugins.map((plugin) => `// @ts-ignore\n\timport('${plugin}')`).join(',\n ')}
]`
export const DEV_PLUGINS = {
${allActivePlugins.map((plugin) => `// @ts-ignore\n\t'${plugin}': () => import('${plugin}')`).join(',\n ')}
}`
)
217 changes: 209 additions & 8 deletions src/echo-app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading