@genesislcap/foundation-zero 14.99.0 → 14.100.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,6 @@
1
- module.exports = {
1
+ import importAliasPlugin from '@genesiscommunitysuccess/analyzer-import-alias-plugin';
2
+
3
+ export default {
2
4
  /** Globs to analyze */
3
5
  globs: ['src/**/*.ts'],
4
6
  /** Directory to output CEM to */
@@ -11,4 +13,11 @@ module.exports = {
11
13
  dependencies: true,
12
14
  /** Output CEM path to `package.json`, defaults to true */
13
15
  packagejson: true,
16
+ plugins: [
17
+ importAliasPlugin({
18
+ '@genesislcap/foundation-ui': {
19
+ '*': (name) => name.replace('Foundation', ''),
20
+ },
21
+ }),
22
+ ],
14
23
  };