From 61111c87f0e762fab8ca540ef8d7e7d17e045ba8 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Sat, 12 Aug 2017 23:48:01 +0430 Subject: [PATCH] move errors.js --- bin/nuxt | 2 +- lib/common/{ => cli}/errors.js | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename lib/common/{ => cli}/errors.js (100%) diff --git a/bin/nuxt b/bin/nuxt index 986b29b6db..90bc808599 100755 --- a/bin/nuxt +++ b/bin/nuxt @@ -1,7 +1,7 @@ #!/usr/bin/env node const join = require('path').join -require('../lib/common/errors') +require('../lib/common/cli/errors') const defaultCommand = 'dev' const commands = new Set([ diff --git a/lib/common/errors.js b/lib/common/cli/errors.js similarity index 100% rename from lib/common/errors.js rename to lib/common/cli/errors.js