mirror of
https://github.com/molstar/molstar.git
synced 2026-06-04 13:30:24 +08:00
15 lines
475 B
JavaScript
15 lines
475 B
JavaScript
const { createApp, createExample, createBrowserTest } = require('./webpack.config.common.js');
|
|
|
|
const apps = ['viewer'];
|
|
const examples = ['proteopedia-wrapper', 'basic-wrapper', 'lighting'];
|
|
const tests = [
|
|
'font-atlas',
|
|
'marching-cubes',
|
|
'render-lines', 'render-mesh', 'render-shape', 'render-spheres', 'render-structure', 'render-text'
|
|
];
|
|
|
|
module.exports = [
|
|
...apps.map(createApp),
|
|
...examples.map(createExample),
|
|
...tests.map(createBrowserTest)
|
|
] |