1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- var path = require( 'path' );
- var fs = require( 'fs' );
- // Creates a rollup config object for the given file to
- // be converted to umd
- function createOutput( file ) {
- var inputPath = path.resolve( file );
- var outputPath = inputPath.replace( /[\\\/]examples[\\\/]jsm[\\\/]/, '/examples/js/' );
- // Every import is marked as external so the output is 1-to-1. We
- // assume that that global object should be the THREE object so we
- // replicate the existing behavior.
- return {
- input: inputPath,
- treeshake: false,
- external: p => p !== inputPath,
- output: {
- format: 'umd',
- name: 'THREE',
- file: outputPath,
- globals: () => 'THREE',
- extend: true,
- banner:
- '/**\n' +
- ` * Generated from '${ path.relative( '.', inputPath.replace( /\\/, '/' ) ) }'\n` +
- ' **/\n'
- }
- };
- }
- // Walk the file structure starting at the given directory and fire
- // the callback for every file.
- function walk( dir, cb ) {
- var files = fs.readdirSync( dir );
- files.forEach( f => {
- var p = path.join( dir, f );
- var stats = fs.statSync( p );
- if ( stats.isDirectory() ) {
- walk( p, cb );
- } else {
- cb( p );
- }
- } );
- }
- // Gather up all the files
- var files = [];
- walk( 'examples/jsm/', p => files.push( p ) );
- // Create a rollup config for each module.js file
- export default files.map( p => createOutput( p ) );
|