Files
UnrealEngine/Engine/Extras/RoboMerge/v3/install-graphviz.js
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

11 lines
282 B
JavaScript
Executable File

#!/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')
})