bajo 2.3.0 → 2.3.1

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/class/base.js CHANGED
@@ -42,7 +42,8 @@ class Base extends Plugin {
42
42
  const { log, getModuleDir, readAllConfigs } = this.app.bajo
43
43
  const { parseObject } = this.app.lib
44
44
 
45
- const defKeys = keys(this.config)
45
+ const defKeys = keys(this.config).concat(this.app.getAllNs())
46
+ defKeys.push('title')
46
47
  log.trace('- %s', this.ns)
47
48
  const dir = this.ns === this.app.mainNs ? (`${this.app.bajo.dir.base}/${this.app.mainNs}`) : getModuleDir(this.pkgName)
48
49
  let cfg = await readAllConfigs(`${dir}/config`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bajo",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "The ultimate framework for whipping up massive apps in no time",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/wiki/CHANGES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changes
2
2
 
3
+ ## 2026-01-21
4
+
5
+ - [2.3.1] Bug fix on keys that needs to be used while reading plugin's config files
6
+
3
7
  ## 2026-01-18
4
8
 
5
9
  - [2.3.0] ```App``` constructor now accept an object as its parameter. For details, please see documentation