UNPKG

@jftechnology/ember-route-metadata

Version:

Components, services and helpers built on Ember Route Metadata. Breadcrumbs, titles and scrolling for Ember apps.

32 lines (26 loc) 854 B
/* eslint-env node */ 'use strict'; module.exports = function(deployTarget) { let ENV = { build: {}, git: { repo: 'git@github.com:JFTechnology/ember-route-metadata.git', }, }; if (deployTarget === 'development') { ENV.build.environment = 'development'; // configure other plugins for development deploy target here } if (deployTarget === 'staging') { ENV.build.environment = 'production'; // configure other plugins for staging deploy target here } if (deployTarget === 'production') { ENV.build.environment = 'production'; // configure other plugins for production deploy target here } // Note: if you need to build some configuration asynchronously, you can return // a promise that resolves with the ENV object instead of returning the // ENV object synchronously. return ENV; };