mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-21 03:05:38 -05:00
Updated coincident to use a local channel (#2195)
* Updated coincident to use a local channel
This commit is contained in:
committed by
GitHub
parent
2642be863b
commit
8de97a7e7b
@@ -1,10 +1,23 @@
|
||||
// ⚠️ This file is an artifact: DO NOT MODIFY
|
||||
export default {
|
||||
["deprecations-manager"]: () =>
|
||||
import(/* webpackIgnore: true */ "./plugins/deprecations-manager.js"),
|
||||
error: () => import(/* webpackIgnore: true */ "./plugins/error.js"),
|
||||
import(
|
||||
/* webpackIgnore: true */
|
||||
"./plugins/deprecations-manager.js"
|
||||
),
|
||||
error: () =>
|
||||
import(
|
||||
/* webpackIgnore: true */
|
||||
"./plugins/error.js"
|
||||
),
|
||||
["py-editor"]: () =>
|
||||
import(/* webpackIgnore: true */ "./plugins/py-editor.js"),
|
||||
import(
|
||||
/* webpackIgnore: true */
|
||||
"./plugins/py-editor.js"
|
||||
),
|
||||
["py-terminal"]: () =>
|
||||
import(/* webpackIgnore: true */ "./plugins/py-terminal.js"),
|
||||
import(
|
||||
/* webpackIgnore: true */
|
||||
"./plugins/py-terminal.js"
|
||||
),
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user