motoko 3.1.1 → 3.1.3

Sign up to get free protection for your applications and to get access to all the features.
package/src/index.ts CHANGED
@@ -147,6 +147,9 @@ export default function wrapMotoko(compiler: Compiler) {
147
147
  setMetadata(values: string) {
148
148
  invoke('setPublicMetadata', false, [values]);
149
149
  },
150
+ setRunStepLimit(limit: number) {
151
+ invoke('setRunStepLimit', false, [limit]);
152
+ },
150
153
  check(path: string): Diagnostic[] {
151
154
  const result = invoke('check', false, [path]);
152
155
  return result.diagnostics;