mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-16 19:47:02 +02:00
* adds ember-flight-icons dependecy * adds inline-json-import babel plugin * adds flight icon styling * updates Icon component to support flight icons * updates Icon component usages to new api and updates name values to flight icon set when available * fixes tests * updates icon story with flight mappings and fixes issue with flight icons not rendering in storybook * adds changelog * fixes typo in sign action glyph name in transit-key model * adds comments to icon-map * updates Icon component to use only supported flight icon sizes * adds icon transform codemod * updates icon transform formatting to handle edge case * runs icon transform on templates * updates Icon usage in toolbar-filter md and story * updates tests
97 lines
3.0 KiB
JavaScript
97 lines
3.0 KiB
JavaScript
/* eslint-env node */
|
|
'use strict';
|
|
|
|
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
|
|
const config = require('./config/environment')();
|
|
|
|
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, {
|
|
'ember-service-worker': {
|
|
serviceWorkerScope: config.serviceWorkerScope,
|
|
skipWaitingOnMessage: true,
|
|
},
|
|
svgJar: {
|
|
//optimize: false,
|
|
//paths: [],
|
|
optimizer: {},
|
|
sourceDirs: ['node_modules/@hashicorp/structure-icons/dist', 'public'],
|
|
rootURL: '/ui/',
|
|
},
|
|
assetLoader: {
|
|
generateURI: function(filePath) {
|
|
return `${config.rootURL.replace(/\/$/, '')}${filePath}`;
|
|
},
|
|
},
|
|
codemirror: {
|
|
modes: ['javascript', 'ruby'],
|
|
keyMaps: ['sublime'],
|
|
},
|
|
babel: {
|
|
plugins: ['@babel/plugin-proposal-object-rest-spread', ['inline-json-import', {}]],
|
|
},
|
|
'ember-cli-babel': {
|
|
includePolyfill: isTest || isProd || isCI,
|
|
},
|
|
hinting: isTest,
|
|
tests: isTest,
|
|
sourcemaps: {
|
|
enabled: !isProd,
|
|
},
|
|
sassOptions: {
|
|
sourceMap: false,
|
|
onlyIncluded: true,
|
|
},
|
|
autoprefixer: {
|
|
enabled: isTest || isProd,
|
|
grid: true,
|
|
browsers: ['defaults', 'ie 11'],
|
|
},
|
|
autoImport: {
|
|
forbidEval: true,
|
|
},
|
|
'ember-test-selectors': {
|
|
strip: isProd,
|
|
},
|
|
'ember-composable-helpers': {
|
|
except: ['array'],
|
|
},
|
|
});
|
|
|
|
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/text-encoder-lite.js');
|
|
app.import('node_modules/jsondiffpatch/dist/jsondiffpatch.umd.js');
|
|
app.import('node_modules/jsondiffpatch/dist/formatters-styles/html.css');
|
|
|
|
app.import('app/styles/bulma/bulma-radio-checkbox.css');
|
|
|
|
app.import('node_modules/@hashicorp/structure-icons/dist/loading.css');
|
|
app.import('node_modules/@hashicorp/structure-icons/dist/run.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();
|
|
};
|