Updating to Bit 2025.2
Plugin Count and Plugin List functions have been moved!
// Old Code Example
const core = require('bit/core')
const totalPlugins = core.plugin_count()
const pluginsList = core.plugin_list()
// New Code Example
const plugins = require('bit/plugins')
const totalPlugins = plugins.count()
const pluginsList = plugins.list()New Plugin Functions
Global "database" folder renamed to "data"
Experimental: Global Exports
Experimental: Definable Intents
Experimental: Definable Node Modules
Last updated
Was this helpful?