tpmkms 7.12.4-beta.4 → 7.12.4-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/fastfood.instance.json +176 -89
- package/common/fastfood.js +2 -5
- package/common/fastfood.test.json +1911 -0
- package/package.json +2 -2
package/common/fastfood.js
CHANGED
@@ -355,12 +355,9 @@ const template = {
|
|
355
355
|
// i need to get the one for fastfood here.
|
356
356
|
const api = args.kms.fastfood.api
|
357
357
|
const needsDrink = askAbout({ args, api })
|
358
|
-
|
359
|
-
|
360
|
-
} else {
|
361
|
-
verbatim("The drink must be specified")
|
358
|
+
for (const item of needsDrink) {
|
359
|
+
api.remove(item)
|
362
360
|
}
|
363
|
-
return false
|
364
361
|
},
|
365
362
|
matchq: (args) => askAbout(args).length > 0 && args.context.marker == 'controlEnd',
|
366
363
|
applyq: (args) => {
|