Forrest logo
back to context overview

postcss

List of commands for postcss:

  • postcss:tldr:53642 postcss: Specify a custom PostCSS parser.
    $ postcss ${filename} --parser ${parser}
    try on your machine
    explain this command
  • postcss:tldr:81756 postcss: Parse and transform a CSS file and output to a specific file.
    $ postcss ${filename} --output ${filename}
    try on your machine
    explain this command
  • postcss:tldr:8297d postcss: Parse and transform a CSS file.
    $ postcss ${filename}
    try on your machine
    explain this command
  • postcss:tldr:9835c postcss: Watch for changes to a CSS file.
    $ postcss ${filename} --watch
    try on your machine
    explain this command
  • postcss:tldr:9eba4 postcss: Specify a custom PostCSS syntax.
    $ postcss ${filename} --syntax ${syntax}
    try on your machine
    explain this command
  • postcss:tldr:bf8a6 postcss: Display available options and examples.
    $ postcss --help
    try on your machine
    explain this command
  • postcss:tldr:e8d14 postcss: Parse and transform a CSS file and output to a specific directory.
    $ postcss ${filename} --dir ${path-to-directory}
    try on your machine
    explain this command
  • postcss:tldr:eb7eb postcss: Parse and transform a CSS file in-place.
    $ postcss ${filename} --replace
    try on your machine
    explain this command
back to context overview