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

Version Path
bootstrap-bookingsync-sass-2.0.0 config/deploy.js
bootstrap-bookingsync-sass-1.0.5 config/deploy.js
bootstrap-bookingsync-sass-1.0.4 config/deploy.js
bootstrap-bookingsync-sass-1.0.3 config/deploy.js
bootstrap-bookingsync-sass-1.0.2 config/deploy.js
bootstrap-bookingsync-sass-1.0.1 config/deploy.js
bootstrap-bookingsync-sass-1.0.0 config/deploy.js
bootstrap-bookingsync-sass-1.0.0.beta12 config/deploy.js
bootstrap-bookingsync-sass-1.0.0.beta11 config/deploy.js
bootstrap-bookingsync-sass-1.0.0.beta10 config/deploy.js
bootstrap-bookingsync-sass-1.0.0.beta9 config/deploy.js
bootstrap-bookingsync-sass-1.0.0.beta8 config/deploy.js
bootstrap-bookingsync-sass-1.0.0.beta7 config/deploy.js
bootstrap-bookingsync-sass-1.0.0.beta6 config/deploy.js
bootstrap-bookingsync-sass-1.0.0.beta5 config/deploy.js
bootstrap-bookingsync-sass-1.0.0.beta4 config/deploy.js
bootstrap-bookingsync-sass-1.0.0.beta3 config/deploy.js
bootstrap-bookingsync-sass-1.0.0.beta2 config/deploy.js
bootstrap-bookingsync-sass-1.0.0.beta1 config/deploy.js