alepha 0.13.3 → 0.13.4

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.
@@ -280,7 +280,7 @@ const $module = (options) => {
280
280
  * Base class for all modules.
281
281
  */
282
282
  var Module = class Module {
283
- static NAME_REGEX = /^[a-z]+(\.[a-z][a-z0-9-]*)*$/;
283
+ static NAME_REGEX = /^[a-z-]+(\.[a-z-][a-z0-9-]*)*$/;
284
284
  /**
285
285
  * Check if a Service is a Module.
286
286
  */
@@ -1019,6 +1019,10 @@ var Alepha = class Alepha {
1019
1019
  constructor(init = {}) {
1020
1020
  this.init = init;
1021
1021
  }
1022
+ set(target, value) {
1023
+ this.store.set(target, value);
1024
+ return this;
1025
+ }
1022
1026
  /**
1023
1027
  * True when start() is called.
1024
1028
  *