mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-29 06:31:10 +01:00
* add browserstack * check for data before removing root token * fix root prefix and select by attributes for ie11 * use objectAt for ie11 * use blobs instead of files for ie11 * manually round cirucmference for ie11 * skip csp test on ie11 * skip tests in ie11 * include polyfill for CI * remove on exit hooks * update which browserstack tests are run * remove ie check since we are not running these tests in ie * remove ie check since we are not running these tests in ie
77 lines
2.3 KiB
JavaScript
77 lines
2.3 KiB
JavaScript
/* eslint-env node */
|
|
'use strict';
|
|
|
|
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
|
|
|
|
const environment = EmberApp.env();
|
|
const isProd = environment === 'production';
|
|
const isTest = environment === 'test';
|
|
const isCI = !!process.env.CI;
|
|
|
|
module.exports = function(defaults) {
|
|
var app = new EmberApp(defaults, {
|
|
codemirror: {
|
|
modes: ['javascript', 'ruby'],
|
|
keyMaps: ['sublime'],
|
|
},
|
|
babel: {
|
|
plugins: ['transform-object-rest-spread'],
|
|
},
|
|
'ember-cli-babel': {
|
|
includePolyfill: isTest || isProd || isCI,
|
|
},
|
|
hinting: isTest,
|
|
tests: isTest,
|
|
sourcemaps: {
|
|
enabled: !isProd,
|
|
},
|
|
sassOptions: {
|
|
sourceMap: false,
|
|
onlyIncluded: true,
|
|
implementation: require('node-sass'),
|
|
},
|
|
autoprefixer: {
|
|
enabled: isTest || isProd,
|
|
grid: true,
|
|
browsers: ['defaults', 'ie 11'],
|
|
},
|
|
autoImport: {
|
|
webpack: {
|
|
// this makes `unsafe-eval` CSP unnecessary
|
|
// see https://github.com/ef4/ember-auto-import/issues/50
|
|
// and https://github.com/webpack/webpack/issues/5627
|
|
devtool: 'inline-source-map',
|
|
},
|
|
},
|
|
'ember-test-selectors': {
|
|
strip: isProd,
|
|
},
|
|
});
|
|
|
|
app.import('vendor/string-includes.js');
|
|
app.import('node_modules/string.prototype.endswith/endswith.js');
|
|
app.import('node_modules/string.prototype.startswith/startswith.js');
|
|
|
|
app.import('node_modules/jsonlint/lib/jsonlint.js');
|
|
app.import('node_modules/codemirror/addon/lint/lint.css');
|
|
app.import('node_modules/codemirror/addon/lint/lint.js');
|
|
app.import('node_modules/codemirror/addon/lint/json-lint.js');
|
|
app.import('node_modules/text-encoder-lite/index.js');
|
|
|
|
app.import('app/styles/bulma/bulma-radio-checkbox.css');
|
|
// Use `app.import` to add additional libraries to the generated
|
|
// output files.
|
|
//
|
|
// If you need to use different assets in different
|
|
// environments, specify an object as the first parameter. That
|
|
// object's keys should be the environment name and the values
|
|
// should be the asset to use in that environment.
|
|
//
|
|
// If the library that you are including contains AMD or ES6
|
|
// modules that you would like to import into your application
|
|
// please specify an object with the list of modules as keys
|
|
// along with the exports of each module as its value.
|
|
|
|
return app.toTree();
|
|
};
|