-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcustom-elements-manifest.config.mjs
More file actions
32 lines (30 loc) · 1.18 KB
/
custom-elements-manifest.config.mjs
File metadata and controls
32 lines (30 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import fs from 'fs';
import addDependenciesInDescription from './cem/add-dependencies-in-description.js';
import addGithubSourceInDescription from './cem/add-github-source-in-description.js';
import identifyReadonlyMembers from './cem/identify-readonly-members.js';
import listImages from './cem/list-images.js';
import removePrivateMembers from './cem/remove-private-members.js';
import sortItems from './cem/sort-items.js';
import supportCcEvents from './cem/support-cc-events.js';
import supportCssdisplayJsdoc from './cem/support-cssdisplay-jsdoc.js';
import supportTypedefJsdoc from './cem/support-typedef-jsdoc.js';
// Temporary for now
fs.mkdirSync('dist', { recursive: true });
export default {
globs: ['src/components/**/cc-*.js', 'src/lib/form/cc-form-control-element.abstract.js'],
exclude: ['src/**/*.stories.js'],
litelement: true,
// dev: true,
// watch: true,
plugins: [
supportCcEvents(),
sortItems(),
removePrivateMembers(),
identifyReadonlyMembers(),
supportCssdisplayJsdoc(),
supportTypedefJsdoc(),
addDependenciesInDescription(),
addGithubSourceInDescription({ githubProject: 'CleverCloud/clever-components' }),
listImages(),
],
};