mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-11 09:51:16 -04:00
* Migrate lineal bar charts to carbon * revert changes made to mirage * fix failing tests * fix test failures * removed the usage of render modifiers * Update RunningTotal component to handle null values for chart data and adjust test for simple chart rendering * Enhance RunningTotal component with Carbon Charts integration and accessibility improvements * Migrate client usage by month bar chart to Carbon Charts with updated options and styles * Update overview tests to utilize new chart selectors and improve assertions for client stats visibility * Remove unnecessary nested-interactive a11y rule suppression from carbon-chart tests * UI: Enhance chart color scales and options for client usage visualization to use HDS color tokens * Refactor chart-related constants and remove unused functions from chart helpers * Update date range inputs in client usage overview tests to use constants for historical months --------- Co-authored-by: Aravind VM <aravind.vm@ibm.com> Co-authored-by: Copilot <copilot@github.com>
94 lines
2.4 KiB
JavaScript
94 lines
2.4 KiB
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/* 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;
|
|
|
|
const appConfig = {
|
|
'ember-service-worker': {
|
|
serviceWorkerScope: config.serviceWorkerScope,
|
|
skipWaitingOnMessage: true,
|
|
},
|
|
babel: {
|
|
plugins: [require.resolve('ember-concurrency/async-arrow-task-transform')],
|
|
},
|
|
fingerprint: {
|
|
exclude: ['images/'],
|
|
},
|
|
assetLoader: {
|
|
generateURI: function (filePath) {
|
|
return `${config.rootURL.replace(/\/$/, '')}${filePath}`;
|
|
},
|
|
},
|
|
'ember-cli-babel': {
|
|
enableTypeScriptTransform: true,
|
|
throwUnlessParallelizable: true,
|
|
},
|
|
hinting: isTest,
|
|
tests: !isProd,
|
|
sourcemaps: {
|
|
enabled: !isProd,
|
|
},
|
|
sassOptions: {
|
|
sourceMap: false,
|
|
onlyIncluded: true,
|
|
quietDeps: true, // silences deprecation warnings from dependencies
|
|
precision: 4,
|
|
includePaths: [
|
|
'./node_modules/@hashicorp/design-system-components/dist/styles',
|
|
'./node_modules/@hashicorp/design-system-tokens/dist/products/css',
|
|
'./node_modules/ember-basic-dropdown/',
|
|
'./node_modules/ember-power-select/',
|
|
'./node_modules/@hashicorp-internal/vault-reporting/dist/styles',
|
|
],
|
|
},
|
|
minifyCSS: {
|
|
options: {
|
|
advanced: false,
|
|
},
|
|
},
|
|
autoprefixer: {
|
|
enabled: isTest || isProd,
|
|
grid: true,
|
|
browsers: ['defaults'],
|
|
},
|
|
autoImport: {
|
|
forbidEval: true,
|
|
},
|
|
'ember-test-selectors': {
|
|
strip: isProd,
|
|
},
|
|
'ember-composable-helpers': {
|
|
except: ['array'],
|
|
},
|
|
'ember-cli-deprecation-workflow': {
|
|
enabled: true,
|
|
},
|
|
};
|
|
|
|
module.exports = function (defaults) {
|
|
const app = new EmberApp(defaults, appConfig);
|
|
|
|
app.import('node_modules/text-encoder-lite/text-encoder-lite.js');
|
|
app.import('vendor/jsondiffpatch.umd.js');
|
|
app.import('vendor/htmlformatter.umd.js');
|
|
app.import('node_modules/jsondiffpatch/lib/formatters/styles/html.css');
|
|
|
|
app.import('app/styles/bulma/bulma-radio-checkbox.css');
|
|
app.import(
|
|
'node_modules/@hashicorp/design-system-components/dist/styles/@hashicorp/design-system-components.css'
|
|
);
|
|
app.import('node_modules/@carbon/charts/dist/styles.css');
|
|
|
|
return app.toTree();
|
|
};
|