mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-09-27 22:45:25 +00:00
9 lines
253 B
JavaScript
9 lines
253 B
JavaScript
const fs = require('fs');
|
|
|
|
let contents = fs.readFileSync(__dirname + '/lib/Tracer.d.ts', 'utf8');
|
|
|
|
// Some fixups of typescript output
|
|
contents = contents.replace(/^\s*#private;\s*$/gm, '');
|
|
|
|
fs.writeFileSync(__dirname + '/lib/Tracer.d.ts', contents);
|