UNPKG

335 BJavaScriptView Raw
1module.exports = (project) => {
2 project.hide('documentUtilsCompiler', () => {
3 return project
4 .compiler('web')
5 .output({
6 libraryTarget: 'umd',
7 library: 'SkypagerDocumentUtils',
8 })
9 .configure(c => c.entry({
10 'documentUtils': './src/document-utils'
11 }))
12 })
13
14 return project
15}
\No newline at end of file