/* eslint-disable prefer-const */ /* global artifacts */ module.exports = async function (deployer, network, accounts) { const LibControl = artifacts.require('LibControl'); const ControlFacet = artifacts.require('ControlFacet'); await deployer.link(LibControl, ControlFacet); await deployer.deploy(ControlFacet) }