Move the CLI to a different file

This commit is contained in:
David Hemphill 2017-08-28 15:02:22 -05:00
parent c1b57db972
commit d1f345fafc
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
"description": "A utility-first CSS framework for rapid UI development.",
"license": "MIT",
"bin": {
"tailwind": "lib/index.js"
"tailwind": "lib/cli.js"
},
"contributors": [
"Adam Wathan <adam.wathan@gmail.com>",

View File

@ -6,7 +6,7 @@ import path from 'path'
import postcss from 'postcss'
import defaultConfig from './defaultConfig'
import program from 'commander'
import tailwind from './tailwind'
import tailwind from '..'
let splitFileName = filename => {
return filename.split('.')