forked from Jbcampbe/genesys-webcomponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstencil.config.ts
69 lines (67 loc) · 1.7 KB
/
stencil.config.ts
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import replace from '@rollup/plugin-replace';
import { Config } from '@stencil/core';
import { less as stencilLess } from '@stencil/less';
import copy from 'rollup-plugin-copy';
import generateMetadata from './scripts/generate-component-data';
const CDN_URL = process.env.CDN_URL || '';
export const config: Config = {
namespace: 'genesys-webcomponents',
globalStyle: 'src/style/style.less',
outputTargets: [
{
dir: 'dist',
type: 'dist'
},
{
type: 'docs-readme'
}
],
plugins: [
stencilLess({
injectGlobalPaths: ['src/style/variables.less']
})
],
rollupPlugins: {
after: [
copy({
targets: [
{ src: 'build/i18n', dest: 'dist/genesys-webcomponents' },
{ src: 'src/style/fonts', dest: 'dist/genesys-webcomponents' },
{
src: [
'src/style/color-palette.less',
'src/style/spacing.less',
'src/style/typography.less',
'src/style/shadows.less'
],
dest: 'dist/genesys-webcomponents/less'
}
],
verbose: true
}),
{
name: 'generate-metadata',
buildEnd() {
generateMetadata();
}
}
]
},
testing: {
browserArgs: ['--no-sandbox'],
browserHeadless: true,
collectCoverage: true,
coverageDirectory: 'build/test-reports/coverage',
coverageReporters: ['json', 'lcov', 'text', 'clover', 'text-summary'],
setupFilesAfterEnv: ['<rootDir>/tests/setupTests.js', '<rootDir>/tests/setupAxeTests.js'],
reporters: [
'default',
[
'jest-junit',
{
outputDirectory: 'build/test-reports'
}
]
]
}
};