mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
34 lines
834 B
JavaScript
34 lines
834 B
JavaScript
// ⚠️ This file is an artifact: DO NOT MODIFY
|
|
export default {
|
|
codemirror: () =>
|
|
import(
|
|
/* webpackIgnore: true */
|
|
"./plugins/codemirror.js"
|
|
),
|
|
["deprecations-manager"]: () =>
|
|
import(
|
|
/* webpackIgnore: true */
|
|
"./plugins/deprecations-manager.js"
|
|
),
|
|
donkey: () =>
|
|
import(
|
|
/* webpackIgnore: true */
|
|
"./plugins/donkey.js"
|
|
),
|
|
error: () =>
|
|
import(
|
|
/* webpackIgnore: true */
|
|
"./plugins/error.js"
|
|
),
|
|
["py-editor"]: () =>
|
|
import(
|
|
/* webpackIgnore: true */
|
|
"./plugins/py-editor.js"
|
|
),
|
|
["py-terminal"]: () =>
|
|
import(
|
|
/* webpackIgnore: true */
|
|
"./plugins/py-terminal.js"
|
|
),
|
|
};
|