build: add umd names
This commit is contained in:
parent
d02f736778
commit
86eee68f29
|
@ -0,0 +1,14 @@
|
|||
// @ts-check
|
||||
import { defineConfig } from '@norm/cli'
|
||||
|
||||
export default defineConfig({
|
||||
build: {
|
||||
rollupOptions: {
|
||||
output: {
|
||||
globals: {
|
||||
'highlight.js/lib/core': 'hljs',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
|
@ -0,0 +1,14 @@
|
|||
// @ts-check
|
||||
import { defineConfig } from '@norm/cli'
|
||||
|
||||
export default defineConfig({
|
||||
build: {
|
||||
rollupOptions: {
|
||||
output: {
|
||||
globals: {
|
||||
'highlight.js': 'hljs',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
Loading…
Reference in New Issue