13 lines
411 B
JavaScript
Executable File
13 lines
411 B
JavaScript
Executable File
const fs = require( 'fs' );
|
|
const path = require( 'path' );
|
|
const glob = require( 'glob' );
|
|
|
|
const paths = glob.sync( path.resolve( __dirname, '../examples/jsm/**/*.js' ) );
|
|
paths.forEach( p => {
|
|
|
|
const content = fs.readFileSync( p, { encoding: 'utf8' } );
|
|
const bareContent = content.replace( /(\.\.\/){2,}build\/three.module.js/g, 'three' );
|
|
fs.writeFileSync( p, bareContent, { encoding: 'utf8' } );
|
|
|
|
} );
|