UNPKG

716 BJavaScriptView Raw
1#!/usr/bin/env node
2
3/**
4 * @fileoverview Main CLI that is run via the eslint-release command.
5 * @author Nicholas C. Zakas
6 * @copyright jQuery Foundation and other contributors, https://jquery.org/
7 * MIT License
8 */
9
10"use strict";
11
12//------------------------------------------------------------------------------
13// Requirements
14//------------------------------------------------------------------------------
15
16const ReleaseOps = require("../lib/release-ops");
17
18//------------------------------------------------------------------------------
19// Execution
20//------------------------------------------------------------------------------
21
22/*
23 * Usage:
24 * $ eslint-publish-release
25 */
26
27ReleaseOps.publishRelease();