Initial commit, 90% there

This commit is contained in:
mdares
2025-12-02 16:27:21 +00:00
commit 755028af7e
7353 changed files with 1759505 additions and 0 deletions

13
.node-red/node_modules/node-red-dashboard/fixgrid.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env node
var fs = require("fs");
// Remove jquery old versions from gridstack dist
try { fs.rmSync('../gridstack/dist/jquery-ui.js'); }
catch(e) { console.log("unable to delete jquery-ui.js") };
try { fs.rmSync('../gridstack/dist/jquery-ui.min.js');}
catch(e) { console.log("unable to delete jquery-ui.min.js") };
try { fs.rmSync('../gridstack/dist/jquery.js'); }
catch(e) { console.log("unable to delete jquery.js") };
try { fs.rmSync('../gridstack/dist/jquery.min.js'); }
catch(e) { console.log("unable to delete jquery.min.js") };