From 9fd622420a0be8f3f8f0862dd024d85442203257 Mon Sep 17 00:00:00 2001 From: Simon Vocella Date: Sat, 4 Mar 2017 19:02:00 +0100 Subject: [PATCH] move base command class --- src/cli/commands/{base.js => _base.js} | 0 src/cli/commands/help.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/cli/commands/{base.js => _base.js} (100%) diff --git a/src/cli/commands/base.js b/src/cli/commands/_base.js similarity index 100% rename from src/cli/commands/base.js rename to src/cli/commands/_base.js diff --git a/src/cli/commands/help.js b/src/cli/commands/help.js index 0a2bb8d036..05fe69a220 100644 --- a/src/cli/commands/help.js +++ b/src/cli/commands/help.js @@ -1,6 +1,6 @@ /* @flow */ -import type BaseCommand from './base.js'; +import BaseCommand from './_base.js'; import * as commands from './index.js'; import * as constants from '../../constants.js'; import type {Reporter} from '../../reporters/index.js';