move worker, minion/pool entry points to kiri-run

This commit is contained in:
Stewart Allen 2022-02-22 11:36:04 -05:00
commit bc1dd02dbc
4 changed files with 5 additions and 5 deletions

4
app.js
View file

@ -397,7 +397,7 @@ const script = {
],
kiri_work : [
"@inject",
"kiri/worker",
"kiri-run/worker",
"&main/kiri",
],
kiri_pool : [
@ -426,7 +426,7 @@ const script = {
"kiri/layers",
"kiri/widget",
"kiri/codec",
"kiri/minion",
"kiri-run/minion",
"main/kiri",
],
engine : [

View file

@ -52,7 +52,7 @@
"kiri/widget",
"kiri/print",
"kiri/codec",
"kiri/worker",
"kiri-run/worker",
"kiri-run/engine",
"main/kiri",
]

View file

@ -2,7 +2,7 @@
"use strict";
gapp.register("kiri.minion", [], (root, exports) => {
gapp.register("kiri-run.minion", [], (root, exports) => {
let BASE = self.base,
KIRI = self.kiri,

View file

@ -23,7 +23,7 @@
// use: kiri-mode.fdm.prepare
// use: kiri-mode.fdm.export
// use: kiri-mode.laser.driver
gapp.register("kiri.worker", [], (root, exports) => {
gapp.register("kiri-run.worker", [], (root, exports) => {
const { base, kiri } = root;
const { util, polygons, wasm_ctrl } = base;