Sha256: b74722e32669a19975ef9ad796fa5450a529359eff606a0b888b39313b3f43d4
Contents?: true
Size: 880 Bytes
Versions: 19
Compression:
Stored size: 880 Bytes
Contents
/* jshint node: true */ module.exports = function(deployTarget) { var ENV = { build: { outputPath: 'docs/public/ember' } // include other plugin configuration that applies to all deploy targets here }; 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; };
Version data entries
19 entries across 19 versions & 1 rubygems