mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
* move from yarn to pnpm for package management * remove lodash.template patch override * remove .yarn folder * update GHA to use pnpm * add @babel/plugin-proposal-decorators * remove .yarnrc.yml * add lock file to copywrite ignore * add @codemirror/view as a dep for its types * use more strict setting about peerDeps * address some peerDep issues with ember-power-select and ember-basic-dropdown * enable TS compilation for the kubernetes engine * enable TS compilation in kv engine * ignore workspace file * use new headless mode in CI * update enos CI scenarios * add qs and express resolutions * run 'pnpm up glob' and 'pnpm up js-yaml' to upgrade those packages * run 'pnpm up preact' because posthog-js had a vulnerable install. see https://github.com/advisories/GHSA-36hm-qxxp-pg3 * add work around for browser timeout errors in test * update other references of yarn to pnpm Co-authored-by: Matthew Irish <39469+meirish@users.noreply.github.com>
33 lines
1,013 B
JavaScript
33 lines
1,013 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/* eslint-env node */
|
|
/* eslint-disable ember/avoid-leaking-state-in-ember-objects */
|
|
/* eslint-disable n/no-extraneous-require */
|
|
'use strict';
|
|
|
|
const { buildEngine } = require('ember-engines/lib/engine-addon');
|
|
|
|
module.exports = buildEngine({
|
|
name: 'open-api-explorer',
|
|
|
|
included() {
|
|
this._super.included && this._super.included.apply(this, arguments);
|
|
// we want to lazy load the CSS deps, importing them here will result in them being added to the
|
|
// engine-vendor.css files that will be lazy loaded with the engine
|
|
// We DON'T want to add the JS deps here because currently that leads to their inclusion in the vendor.js
|
|
// (this is likely a bug) - to get around that we lazy-load via dynamic `import()` in the swagger-ui.js
|
|
// component
|
|
this.import('node_modules/swagger-ui-dist/swagger-ui.css');
|
|
},
|
|
|
|
lazyLoading: {
|
|
enabled: true,
|
|
},
|
|
|
|
isDevelopingAddon() {
|
|
return true;
|
|
},
|
|
});
|