2021-04-28 00:45:37 +08:00
|
|
|
// import vue from 'rollup-plugin-vue'
|
2021-04-28 02:07:12 +08:00
|
|
|
// import esbuild from 'rollup-plugin-esbuild'
|
|
|
|
// import replace from '@rollup/plugin-replace'
|
|
|
|
import dts from "rollup-plugin-dts"
|
|
|
|
// import { nodeResolve } from '@rollup/plugin-node-resolve'
|
2020-09-16 21:30:39 +08:00
|
|
|
|
2021-04-22 03:05:49 +08:00
|
|
|
const input = 'src/export.ts'
|
2021-04-27 01:05:12 +08:00
|
|
|
|
2020-09-17 05:54:14 +08:00
|
|
|
const external = [
|
|
|
|
'three',
|
|
|
|
'three/examples/jsm/controls/OrbitControls.js',
|
2021-02-21 21:10:11 +08:00
|
|
|
'three/examples/jsm/deprecated/Geometry.js',
|
2021-03-07 22:18:29 +08:00
|
|
|
'three/examples/jsm/lights/RectAreaLightUniformsLib.js',
|
|
|
|
'three/examples/jsm/helpers/RectAreaLightHelper.js',
|
2020-10-04 06:49:05 +08:00
|
|
|
'three/examples/jsm/loaders/GLTFLoader.js',
|
2021-03-14 02:34:34 +08:00
|
|
|
'three/examples/jsm/loaders/FBXLoader.js',
|
2020-09-17 05:54:14 +08:00
|
|
|
'three/examples/jsm/postprocessing/BokehPass.js',
|
2020-10-04 06:49:05 +08:00
|
|
|
'three/examples/jsm/postprocessing/EffectComposer.js',
|
|
|
|
'three/examples/jsm/postprocessing/FilmPass.js',
|
|
|
|
'three/examples/jsm/postprocessing/HalftonePass.js',
|
2020-09-17 05:54:14 +08:00
|
|
|
'three/examples/jsm/postprocessing/RenderPass.js',
|
2021-02-21 21:10:11 +08:00
|
|
|
'three/examples/jsm/postprocessing/Pass.js',
|
2020-10-04 06:49:05 +08:00
|
|
|
'three/examples/jsm/postprocessing/SAOPass.js',
|
2021-04-04 03:45:08 +08:00
|
|
|
'three/examples/jsm/postprocessing/SSAOPass.js',
|
2021-02-21 21:10:11 +08:00
|
|
|
'three/examples/jsm/postprocessing/SMAAPass.js',
|
|
|
|
'three/examples/jsm/postprocessing/ShaderPass.js',
|
2020-09-17 05:54:14 +08:00
|
|
|
'three/examples/jsm/postprocessing/UnrealBloomPass.js',
|
2021-02-21 21:10:11 +08:00
|
|
|
'three/examples/jsm/shaders/FXAAShader.js',
|
2021-04-05 03:09:29 +08:00
|
|
|
'three/examples/jsm/webxr/VRButton.js',
|
2020-09-17 05:54:14 +08:00
|
|
|
'vue',
|
2021-04-22 03:05:49 +08:00
|
|
|
]
|
2020-10-04 06:49:05 +08:00
|
|
|
|
2021-04-28 02:07:12 +08:00
|
|
|
// const cdnReplaces = {
|
|
|
|
// 'from \'vue\'': 'from \'https://unpkg.com/vue@3.0.11/dist/vue.esm-browser.prod.js\'',
|
|
|
|
// 'from \'three\'': 'from \'https://unpkg.com/three@0.127.0/build/three.module.js\'',
|
|
|
|
// 'from \'three/examples': 'from \'https://unpkg.com/three@0.127.0/examples',
|
|
|
|
// delimiters: ['', ''],
|
|
|
|
// }
|
2021-02-26 05:55:44 +08:00
|
|
|
|
2021-04-28 02:07:12 +08:00
|
|
|
// function createConfig(format, output, plugins = [], minify = false) {
|
|
|
|
// const tsPlugin = esbuild({
|
|
|
|
// sourceMap: true,
|
|
|
|
// minify,
|
|
|
|
// target: 'es2019',
|
|
|
|
// })
|
2021-04-27 01:05:12 +08:00
|
|
|
|
2021-04-28 02:07:12 +08:00
|
|
|
// return {
|
|
|
|
// input,
|
|
|
|
// external,
|
|
|
|
// output: {
|
|
|
|
// format,
|
|
|
|
// ...output,
|
|
|
|
// // exports: 'named',
|
|
|
|
// sourcemap: true,
|
|
|
|
// },
|
|
|
|
// plugins: [
|
|
|
|
// // vue(),
|
|
|
|
// tsPlugin,
|
|
|
|
// ...plugins,
|
|
|
|
// ],
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
export default [
|
|
|
|
// createConfig('es', { file: 'build/trois.module.cdn.js' }, [replace(cdnReplaces)]),
|
|
|
|
// createConfig('es', { file: 'build/trois.module.cdn.min.js' }, [replace(cdnReplaces)], true),
|
|
|
|
// createConfig('es', { file: 'build/trois.module.js' }),
|
|
|
|
// createConfig('es', { file: 'build/trois.module.min.js' }, [], true),
|
|
|
|
// createConfig('cjs', { file: 'build/trois.js' }),
|
|
|
|
{
|
|
|
|
input: 'types/export.d.ts',
|
2020-09-16 21:30:39 +08:00
|
|
|
external,
|
|
|
|
output: {
|
2021-04-28 02:07:12 +08:00
|
|
|
format: 'es',
|
|
|
|
file: 'build/trois.d.ts',
|
|
|
|
plugins: [dts()],
|
2020-09-16 21:30:39 +08:00
|
|
|
},
|
2021-04-28 02:07:12 +08:00
|
|
|
},
|
2021-04-22 03:05:49 +08:00
|
|
|
]
|