ekms 7.12.2-beta.5 → 7.12.3-beta.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -5095,48 +5095,6 @@
5095
5095
  0
5096
5096
  ]
5097
5097
  ],
5098
- [
5099
- [
5100
- "celcius",
5101
- 0
5102
- ],
5103
- [
5104
- "divideByOperator",
5105
- 0
5106
- ],
5107
- [
5108
- "equals",
5109
- 0
5110
- ],
5111
- [
5112
- "fahrenheit",
5113
- 0
5114
- ],
5115
- [
5116
- "leftParenthesis",
5117
- 0
5118
- ],
5119
- [
5120
- "minusOperator",
5121
- 0
5122
- ],
5123
- [
5124
- "number",
5125
- 0
5126
- ],
5127
- [
5128
- "plusOperator",
5129
- 0
5130
- ],
5131
- [
5132
- "rightParenthesis",
5133
- 0
5134
- ],
5135
- [
5136
- "timesOperator",
5137
- 0
5138
- ]
5139
- ],
5140
5098
  [
5141
5099
  [
5142
5100
  "celcius",
@@ -5480,48 +5438,6 @@
5480
5438
  0
5481
5439
  ]
5482
5440
  ],
5483
- [
5484
- [
5485
- "celcius",
5486
- 0
5487
- ],
5488
- [
5489
- "divideByOperator",
5490
- 0
5491
- ],
5492
- [
5493
- "equals",
5494
- 0
5495
- ],
5496
- [
5497
- "fahrenheit",
5498
- 0
5499
- ],
5500
- [
5501
- "leftParenthesis",
5502
- 0
5503
- ],
5504
- [
5505
- "minusOperator",
5506
- 0
5507
- ],
5508
- [
5509
- "number",
5510
- 0
5511
- ],
5512
- [
5513
- "plusOperator",
5514
- 0
5515
- ],
5516
- [
5517
- "rightParenthesis",
5518
- 0
5519
- ],
5520
- [
5521
- "timesOperator",
5522
- 0
5523
- ]
5524
- ],
5525
5441
  [
5526
5442
  [
5527
5443
  "celcius",
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.2-beta.5"
284
+ "theprogrammablemind": "7.12.3-beta.0"
285
285
  },
286
- "version": "7.12.2-beta.5",
286
+ "version": "7.12.3-beta.0",
287
287
  "license": "UNLICENSED"
288
288
  }