mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-19 16:00:42 -05:00
* WIP * Add a "donkey" worker that execs or evaluates all the things --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
29 lines
709 B
JavaScript
29 lines
709 B
JavaScript
// ⚠️ This file is an artifact: DO NOT MODIFY
|
|
export default {
|
|
["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"
|
|
),
|
|
};
|