2018-09-25 16:28:26 +00:00
|
|
|
/* eslint-env node */
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
|
2019-05-13 19:05:25 +00:00
|
|
|
const config = require('./config/environment')();
|
2018-04-03 14:16:57 +00:00
|
|
|
|
2018-11-26 18:47:56 +00:00
|
|
|
const environment = EmberApp.env();
|
|
|
|
const isProd = environment === 'production';
|
|
|
|
const isTest = environment === 'test';
|
2019-05-03 22:20:14 +00:00
|
|
|
const isCI = !!process.env.CI;
|
2018-11-26 18:47:56 +00:00
|
|
|
|
2018-04-03 14:16:57 +00:00
|
|
|
module.exports = function(defaults) {
|
|
|
|
var app = new EmberApp(defaults, {
|
2019-05-13 19:05:25 +00:00
|
|
|
svgJar: {
|
|
|
|
//optimize: false,
|
|
|
|
//paths: [],
|
|
|
|
optimizer: {},
|
|
|
|
sourceDirs: ['node_modules/@hashicorp/structure-icons/dist', 'public'],
|
|
|
|
rootURL: '/ui/',
|
|
|
|
},
|
|
|
|
assetLoader: {
|
|
|
|
generateURI: function(filePath) {
|
|
|
|
return `${config.rootURL.replace(/\/$/, '')}${filePath}`;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2018-04-03 14:16:57 +00:00
|
|
|
codemirror: {
|
2018-06-25 20:30:11 +00:00
|
|
|
modes: ['javascript', 'ruby'],
|
|
|
|
keyMaps: ['sublime'],
|
2018-04-03 14:16:57 +00:00
|
|
|
},
|
|
|
|
babel: {
|
2018-06-25 20:30:11 +00:00
|
|
|
plugins: ['transform-object-rest-spread'],
|
2018-04-16 21:04:43 +00:00
|
|
|
},
|
2018-11-07 02:19:12 +00:00
|
|
|
'ember-cli-babel': {
|
2019-05-03 22:20:14 +00:00
|
|
|
includePolyfill: isTest || isProd || isCI,
|
2018-11-26 18:47:56 +00:00
|
|
|
},
|
|
|
|
hinting: isTest,
|
|
|
|
tests: isTest,
|
|
|
|
sourcemaps: {
|
2018-12-03 14:22:13 +00:00
|
|
|
enabled: !isProd,
|
2018-11-26 18:47:56 +00:00
|
|
|
},
|
|
|
|
sassOptions: {
|
|
|
|
sourceMap: false,
|
|
|
|
onlyIncluded: true,
|
|
|
|
implementation: require('node-sass'),
|
2018-11-07 02:19:12 +00:00
|
|
|
},
|
2018-04-16 21:04:43 +00:00
|
|
|
autoprefixer: {
|
2018-11-26 18:47:56 +00:00
|
|
|
enabled: isTest || isProd,
|
2018-04-16 21:04:43 +00:00
|
|
|
grid: true,
|
2018-06-25 20:30:11 +00:00
|
|
|
browsers: ['defaults', 'ie 11'],
|
|
|
|
},
|
2018-07-18 14:13:39 +00:00
|
|
|
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',
|
|
|
|
},
|
|
|
|
},
|
2018-12-10 16:44:37 +00:00
|
|
|
'ember-test-selectors': {
|
|
|
|
strip: isProd,
|
|
|
|
},
|
2019-06-20 13:37:27 +00:00
|
|
|
// https://github.com/ember-cli/ember-fetch/issues/204
|
|
|
|
'ember-fetch': {
|
|
|
|
preferNative: true,
|
|
|
|
},
|
2018-04-03 14:16:57 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
app.import('vendor/string-includes.js');
|
2018-06-25 20:30:11 +00:00
|
|
|
app.import('node_modules/string.prototype.endswith/endswith.js');
|
2018-05-08 15:43:20 +00:00
|
|
|
app.import('node_modules/string.prototype.startswith/startswith.js');
|
2018-04-03 14:16:57 +00:00
|
|
|
|
2018-05-08 15:43:20 +00:00
|
|
|
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');
|
2018-05-25 20:33:22 +00:00
|
|
|
|
2018-11-26 18:47:56 +00:00
|
|
|
app.import('app/styles/bulma/bulma-radio-checkbox.css');
|
2019-05-13 19:05:25 +00:00
|
|
|
|
|
|
|
app.import('node_modules/@hashicorp/structure-icons/dist/loading.css');
|
|
|
|
app.import('node_modules/@hashicorp/structure-icons/dist/run.css');
|
2019-07-02 22:41:23 +00:00
|
|
|
|
2018-04-03 14:16:57 +00:00
|
|
|
// 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();
|
|
|
|
};
|