mirror of
https://github.com/primer/css.git
synced 2024-12-02 07:53:06 +03:00
20 lines
398 B
JavaScript
Executable File
20 lines
398 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
'use strict'
|
|
const meow = require('meow')
|
|
const build = require('./')
|
|
|
|
const cli = meow(`
|
|
Usage
|
|
$ primer-module-build [file]
|
|
|
|
File
|
|
File. This is required. The file input is the .scss file that
|
|
will be built into .css. The build automatically looks in the
|
|
node_modules/ directory for any inputs.
|
|
|
|
Example
|
|
$ primer-module-build index.scss
|
|
`)
|
|
|
|
build(cli)
|