mirror of
https://github.com/tweenjs/tween.js.git
synced 2026-01-25 16:46:30 +00:00
8 lines
114 B
JavaScript
8 lines
114 B
JavaScript
const fs = require('fs');
|
|
|
|
fs.unlink('.temp.version.js', (error) => {
|
|
if (error) {
|
|
process.exit(1);
|
|
}
|
|
});
|