UNPKG

@jsenv/core

Version:

Tool to develop, test and build js projects

13 lines (11 loc) 271 B
export const jsenvPluginNodeRuntime = ({ runtimeCompat }) => { const nodeFound = Object.keys(runtimeCompat).includes("node"); if (!nodeFound) { return []; } // what do we need to do? return { name: "jsenv:node_runtime", appliesDuring: "*", }; };