mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 17:26:01 +08:00
16 lines
229 B
JavaScript
16 lines
229 B
JavaScript
import dts from 'rollup-plugin-dts'
|
|
|
|
export default [
|
|
{
|
|
input: 'build/index.js',
|
|
context: 'this',
|
|
output: [
|
|
{
|
|
file: '../build/spine-core.js',
|
|
name: 'spine',
|
|
format: 'umd',
|
|
exports: 'named',
|
|
}
|
|
]
|
|
}
|
|
] |