forked from tailwindlabs/tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.js
More file actions
63 lines (51 loc) · 1.65 KB
/
init.js
File metadata and controls
63 lines (51 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import * as constants from '../../constants'
import * as colors from '../colors'
import * as emoji from '../emoji'
import * as utils from '../utils'
export const usage = 'init [file]'
export const description =
'Creates Tailwind config file. Default: ' +
colors.file(utils.getSimplePath(constants.defaultConfigFile))
export const options = [
{
usage: '--full',
description: 'Generate complete configuration file.',
},
{
usage: '-p',
description: 'Generate postcss.config.js file.',
},
]
export const optionMap = {
full: ['full'],
postcss: ['p'],
}
/**
* Runs the command.
*
* @param {string[]} cliParams
* @param {object} cliOptions
* @return {Promise}
*/
export function run(cliParams, cliOptions) {
return new Promise(resolve => {
utils.header()
const full = cliOptions.full
const file = cliParams[0] || constants.defaultConfigFile
const simplePath = utils.getSimplePath(file)
utils.exists(file) && utils.die(colors.file(simplePath), 'already exists.')
const stubFile = full ? constants.defaultConfigStubFile : constants.simpleConfigStubFile
utils.copyFile(stubFile, file)
utils.log()
utils.log(emoji.yes, 'Created Tailwind config file:', colors.file(simplePath))
if (cliOptions.postcss) {
const path = utils.getSimplePath(constants.defaultPostCssConfigFile)
utils.exists(constants.defaultPostCssConfigFile) &&
utils.die(colors.file(path), 'already exists.')
utils.copyFile(constants.defaultPostCssConfigStubFile, constants.defaultPostCssConfigFile)
utils.log(emoji.yes, 'Created PostCSS config file:', colors.file(path))
}
utils.footer()
resolve()
})
}