motoko 3.1.1 → 3.1.3

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/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;