Files
UnrealEngine/Engine/Extras/RoboMerge/v3/install-graphviz.js
2025-05-18 13:04:45 +08:00

11 lines
282 B
JavaScript

#!/usr/bin/env node
// Copyright Epic Games, Inc. All Rights Reserved.
const fs = require('fs')
Promise.all([
fs.promises.copyFile('node_modules/@viz-js/viz/lib/viz-standalone.js', 'public/js/viz-standalone.js'),
])
.then(() => {
console.log('Installed GraphViz for web app')
})