enhance

ac-apps-minimal-enhance-config

enhance/config.js

Copy bundled config to app’s config itself. It keeps the already defined config options. But, overwrites the options loaded from bundled config. All the nested config options are also copied.

A module for ac-bundle-app, published by ac-bundle-module.

Install from:

https://www.npmjs.com/package/ac-apps-minimal-enhance-config
https://github.com/animatedcreativity/ac-apps-minimal-enhance-config

Available Methods: start

start

function() {
  (function(left, right) {
    var copyConfig = function(left, right) {
      if (app.has(left) && app.has(right)) {
        for (var key in left) {
          var value = left[key];
          if (typeof value !== "object") {
            right[key] = value;
          } else {
            copyConfig(value, right[key]);
          }
        }
      }
    };
    copyConfig(left, right);
  })(appConfig.config, config);
}

Happy Coding!

MIT License: https://choosealicense.com/licenses/mit/

Copyright 2022 Animated Creativity

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Leave a Reply

Your email address will not be published. Required fields are marked *