mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-21 03:05:38 -05:00
* Introducing <script type="py-game"> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
39 lines
957 B
JavaScript
39 lines
957 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-game"]: () =>
|
|
import(
|
|
/* webpackIgnore: true */
|
|
"./plugins/py-game.js"
|
|
),
|
|
["py-terminal"]: () =>
|
|
import(
|
|
/* webpackIgnore: true */
|
|
"./plugins/py-terminal.js"
|
|
),
|
|
};
|