Compare commits

...

2 Commits

2 changed files with 5 additions and 14 deletions

View File

@@ -5,6 +5,7 @@
exclude = {
"^web/", "^__tests__/", "^startup/",
"%.md$", "%.json$", "^%.git", "^LICENSE$", "^node_modules/",
"%.bak$", "^listDevicesByType%.lua$",
},
install = [[
local pkgDir = fs.combine("packages", "inventory-manager")

View File

@@ -1,11 +1,11 @@
{
[ "im_inventory_manager" ] = {
title = "Inventory Manager",
title = "Inv Manager",
category = "Inventory",
run = "inventoryManager.lua",
},
[ "im_inventory_client" ] = {
title = "Inventory Display",
title = "Inv Display",
category = "Inventory",
run = "inventoryClient.lua",
},
@@ -13,21 +13,11 @@
title = "Crafting Turtle",
category = "Inventory",
run = "craftingTurtle.lua",
requires = { turtle = true },
},
[ "im_dropper_controller" ] = {
title = "Dropper Controller",
category = "Inventory",
run = "dropperController.lua",
requires = "turtle",
},
[ "im_web_bridge" ] = {
title = "Inventory Web Bridge",
title = "Inv Web Bridge",
category = "Inventory",
run = "inventoryWebBridge.lua",
},
[ "im_list_devices" ] = {
title = "List Devices",
category = "Inventory",
run = "listDevicesByType.lua",
},
}