Dia antes primera install

This commit is contained in:
2025-12-08 15:20:28 -06:00
commit 1416478c9c
4130 changed files with 886376 additions and 0 deletions

13
node_modules/node-red-dashboard/fixgrid.js generated vendored Executable 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") };