From 933b557e876b2c71968cd7cd77940f8300c2d6a8 Mon Sep 17 00:00:00 2001 From: mattstypa Date: Fri, 14 Sep 2018 08:28:03 -0500 Subject: [PATCH] Code style fixes --- src/cli/constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/constants.js b/src/cli/constants.js index ec81cac5a..8ebbaf934 100644 --- a/src/cli/constants.js +++ b/src/cli/constants.js @@ -1,8 +1,8 @@ -import path from 'path'; +import path from 'path' export default { cli: 'tailwind', defaultConfigFile: 'tailwind.js', defaultOutputFile: 'output.css', - configStubFile: path.resolve(__dirname, '../../defaultConfig.stub.js') + configStubFile: path.resolve(__dirname, '../../defaultConfig.stub.js'), }