netlify-cli
Version:
Netlify command line tool
45 lines (35 loc) • 1.03 kB
JavaScript
const Command = require('../utils/command')
const { track } = require('../utils/telemetry')
class UnlinkCommand extends Command {
async run() {
const { site, state } = this.netlify
const siteId = site.id
if (!siteId) {
this.log(`Folder is not linked to a Netlify site. Run 'netlify link' to link it`)
return this.exit()
}
await this.config.runHook('analytics', {
eventName: 'command',
payload: {
command: 'unlink',
},
})
let siteData = {}
try {
siteData = await this.netlify.api.getSite({ siteId })
} catch (error) {
// ignore errors if we can't get the site
}
state.delete('siteId')
await track('sites_unlinked', {
siteId: siteData.id || siteId,
})
if (site) {
this.log(`Unlinked ${site.configPath} from ${siteData ? siteData.name : siteId}`)
} else {
this.log('Unlinked site')
}
}
}
UnlinkCommand.description = `Unlink a local folder from a Netlify site`
module.exports = UnlinkCommand