- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
20 lines
543 B
JavaScript
20 lines
543 B
JavaScript
/**
|
|
* @fileoverview `ConfigArray` class.
|
|
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
*/
|
|
|
|
import { ConfigArray, getUsedExtractedConfigs } from "./config-array.js";
|
|
import { ConfigDependency } from "./config-dependency.js";
|
|
import { ExtractedConfig } from "./extracted-config.js";
|
|
import { IgnorePattern } from "./ignore-pattern.js";
|
|
import { OverrideTester } from "./override-tester.js";
|
|
|
|
export {
|
|
ConfigArray,
|
|
ConfigDependency,
|
|
ExtractedConfig,
|
|
IgnorePattern,
|
|
OverrideTester,
|
|
getUsedExtractedConfigs
|
|
};
|