2.0.0 • Published 7 years ago

funkhaus-format-login v2.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
7 years ago

Quickly generate WP login CSS files for Funkhaus projects.

How

  1. sudo npm install funkhaus-format-login -g
  2. Open Terminal and move to the desired directory
  3. funkhaus-format-login and follow instructions

That's it!

Options

  • -t filename.txt or --template example.txt
    • File to use as a template (default template.txt)
  • -e encoding or --encoding encoding
    • Encoding of the template (default utf8)
  • -o example.txt or --output example.txt
    • Name of output file (default output.txt)

Changing the Template

Everything that happens in the script is based on the template file. funkhaus-format-login scans the template (default templates/template.css) for Mustache-style placeholders, then prompts the user for values to fill those placeholders.

For example, if template.css just contained this:

html {
    color: {{ background-color }};
}

then running funkhaus-format-login would ask you for the background-color:

prompt: background-color (required): [your hex value here]

and would result in this CSS file:

html {
    color: [your hex value here];
}

You can also specify a default value for a placeholder:

html {
    color: {{ background }};
}
body {
    color: {{ body-background default:background }};
}

Name the placeholder as usual, then indicate a default value to look for with default:[default-value-name]. This falls back on the default value if the user doesn't specify the value in the prompt.


Version 2.0

http://funkhaus.us

2.0.0

7 years ago

1.1.0

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago