Skip to content

Commit

Permalink
Merge pull request #88 from julianheckmann/feature/implement-logging
Browse files Browse the repository at this point in the history
Implement logging framework
  • Loading branch information
zach-herridge committed Jan 3, 2024
2 parents ee5b5a6 + 124f392 commit 490f180
Show file tree
Hide file tree
Showing 30 changed files with 907 additions and 57 deletions.
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

0 comments on commit 490f180

Please sign in to comment.