tpmkms 8.3.0-beta.5 → 8.3.0-beta.6
Sign up to get free protection for your applications and to get access to all the features.
- package/common/errors.js +10 -1
- package/common/ordinals.js +0 -1
- package/common/ui.instance.json +0 -5
- package/package.json +2 -2
package/common/errors.js
CHANGED
@@ -24,7 +24,16 @@ let config = {
|
|
24
24
|
const argument = contexts.find( (argument) => argument.argument_id == context.interpretation_error.argument_id )
|
25
25
|
verbatim(`Did not know how to ${await g(context)}, ${await g(argument)}`)
|
26
26
|
}
|
27
|
-
}
|
27
|
+
},
|
28
|
+
{
|
29
|
+
match: ({context}) => context.context?.interpretation_error,
|
30
|
+
apply: async ({context, g, gp, verbatim, contexts}) => {
|
31
|
+
context = context.context
|
32
|
+
debugger
|
33
|
+
const argument = contexts.find( (argument) => argument.argument_id == context.interpretation_error.argument_id )
|
34
|
+
verbatim(`Did not know how to ${await g(context)} ${await gp(argument)}`)
|
35
|
+
}
|
36
|
+
},
|
28
37
|
],
|
29
38
|
};
|
30
39
|
|
package/common/ordinals.js
CHANGED
package/common/ui.instance.json
CHANGED
package/package.json
CHANGED
@@ -310,8 +310,8 @@
|
|
310
310
|
"table": "^6.7.1",
|
311
311
|
"base-64": "^1.0.0",
|
312
312
|
"argparse": "^2.0.1",
|
313
|
-
"theprogrammablemind": "8.3.0-beta.
|
313
|
+
"theprogrammablemind": "8.3.0-beta.6"
|
314
314
|
},
|
315
|
-
"version": "8.3.0-beta.
|
315
|
+
"version": "8.3.0-beta.6",
|
316
316
|
"license": "UNLICENSED"
|
317
317
|
}
|