bajo 1.0.10 → 1.0.11

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.
@@ -148,5 +148,8 @@
148
148
  "or": "or",
149
149
  "none": "none",
150
150
  "isRequired%s": "'%s' is required",
151
- "isDisabled%s": "'%s' is disabled"
151
+ "isDisabled%s": "'%s' is disabled",
152
+ "formSubmitted": "Form Submitted",
153
+ "formSubmittedInfo": "The form you entered has been successfully submitted and is stored securely in our system.",
154
+ "thankYou": "Thank you!"
152
155
  }
package/bajo/intl/id.json CHANGED
@@ -148,5 +148,8 @@
148
148
  "or": "atau",
149
149
  "none": "kosong",
150
150
  "isRequired%s": "'%s' disyaratkan",
151
- "isDisabled%s": "'%s' dimatikan"
151
+ "isDisabled%s": "'%s' dimatikan",
152
+ "formSubmitted": "Form Terkirim",
153
+ "formSubmittedInfo": "Form yang Anda masukkan telah sukses terkirim dan disimpan dengan aman di sistim kami.",
154
+ "thankYou": "Terima kasih!"
152
155
  }
@@ -12,7 +12,11 @@ async function buildPlugins () {
12
12
  if (fs.existsSync(pluginsFile)) {
13
13
  pluginPkgs = pluginPkgs.concat(filter(map(trim(fs.readFileSync(pluginsFile, 'utf8')).split('\n'), p => trim(p)), b => !isEmpty(b)))
14
14
  }
15
- this.pluginPkgs = without(uniq(pluginPkgs), this.mainNs)
15
+ this.pluginPkgs = map(filter(without(uniq(pluginPkgs), this.mainNs), p => {
16
+ return p[0] !== '#'
17
+ }), p => {
18
+ return trim(p.split('#')[0])
19
+ })
16
20
  this.pluginPkgs.push(this.mainNs)
17
21
  for (const pkg of this.pluginPkgs) {
18
22
  const ns = camelCase(pkg)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bajo",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "A framework to build a giant monstrous app rapidly",
5
5
  "main": "boot/index.js",
6
6
  "scripts": {