cables-gl / cables

cables is a tool for creating beautiful interactive content
https://cables.gl
MIT License
333 stars 13 forks source link

lib loading #6247

Open pandrr opened 2 months ago

pandrr commented 2 months ago

how to load libs in the future

steam0r commented 2 months ago

libs should be attached to ops and live in the op folder needs to be loaded the same way in standalone and web

steam0r commented 2 months ago
steam0r commented 2 months ago

"dependencies": [
        {
            "name": "lib in npm",
            "src": [
                "handlebars"
            ],
            "version": "1.0.0",
            "type": "npm"
        },
        {
            "name": "lib on cdn",
            "src": [
                "https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.30.1/moment.min.js"
            ],
            "version": "1.0.0",
            "type": "commonjs"
        },
        {
            "name": "lib in op",
            "src": [
                "twilio-video.min.js"
            ],
            "version": "1.0.0",
            "type": "module"
        }
    ],```
steam0r commented 1 month ago