ekms 7.12.3 → 7.12.4-beta.0

Sign up to get free protection for your applications and to get access to all the features.
package/common/time.js CHANGED
@@ -156,6 +156,7 @@ const configStruct = {
156
156
 
157
157
  const createConfig = () => {
158
158
  const config = new Config(configStruct, module)
159
+ config.stop_auto_rebuild()
159
160
  config.add(tell())
160
161
  config.api = api
161
162
  config.initializer( ({config, objects, kms, isModule}) => {
@@ -170,6 +171,7 @@ const createConfig = () => {
170
171
  apply: api.semantics
171
172
  })
172
173
  })
174
+ config.restart_auto_rebuild()
173
175
  return config
174
176
  }
175
177
 
package/common/ui.js CHANGED
@@ -186,8 +186,10 @@ const template = {
186
186
 
187
187
  const createConfig = () => {
188
188
  const config = new Config(configStruct, module)
189
- config.add(dialogues()).add(math())
189
+ config.stop_auto_rebuild()
190
+ config.add(dialogues(), math())
190
191
  config.api = new API()
192
+ config.restart_auto_rebuild()
191
193
  return config
192
194
  }
193
195
 
package/package.json CHANGED
@@ -281,8 +281,8 @@
281
281
  "table": "^6.7.1",
282
282
  "base-64": "^1.0.0",
283
283
  "argparse": "^2.0.1",
284
- "theprogrammablemind": "7.12.3"
284
+ "theprogrammablemind": "7.12.4-beta.0"
285
285
  },
286
- "version": "7.12.3",
286
+ "version": "7.12.4-beta.0",
287
287
  "license": "UNLICENSED"
288
288
  }