@openshift-console/dynamic-plugin-sdk-webpack
Version:
Provides webpack ConsoleRemotePlugin used to build all dynamic plugin assets.
9 lines (8 loc) • 385 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.isStandardPluginManifest = void 0;
const isStandardPluginManifest = (m) =>
// Standard plugin manifests must have a string valued baseURL property
// eslint-disable-next-line dot-notation
m['baseURL'] && typeof m['baseURL'] === 'string';
exports.isStandardPluginManifest = isStandardPluginManifest;
;