Package Exports
- @superflycss/cli
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@superflycss/cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
SuperflyCSS Commandline Interface
CLI for SuperflyCSS Projects. The CLI enables the running of superflycss build, test, and serve/watch tasks. The CLI uses the pli - project layout instance for project layout. See the Build PostCSS Plugins list for a list of plugins currently supported.
Installation
npm i -g @superflycss/cli
Usage
The sfc serve command watches and builds the project while also serving the projects html files with live reload courtesy of browser-sync.
Place main css files in src/main/css and test css files (The CSS used in the test html file) in src/test/css.  Built main css files are saved in target/main/css and test css files are saved to target/test/css.  Use test case files in src/test/html/ to test the CSS being built.  Run sfc test:css to compile the test html files.
| Command | Description | 
|---|---|
| sfc new [project name] | Create a new Project | 
| sfc clean | Delete the target directory | 
| sfc build:main:css | Build the main css file | 
| sfc build:test:css | Build the test css file | 
| sfc test:html | Build the test html file | 
| sfc serve | Live rebuild and serve all files | 
| sfc prepublish | Prepublish CSS files | 
PostCSS Plugins Used by the CSS Build Commands
The following plugins are invoked when the tasks build:main:css and build:test:css are invoked.
| Plugin Name | Plugin URL | 
|---|---|
| autoprefixer | https://github.com/postcss/autoprefixer | 
| postcss-import | https://github.com/postcss/postcss-import | 
| postcss-apply | https://github.com/pascalduez/postcss-apply | 
| postcss-calc | https://github.com/postcss/postcss-calc | 
| postcss-color-function | https://github.com/postcss/postcss-color-function | 
| postcss-custom-media | https://github.com/postcss/postcss-custom-media | 
| postcss-custom-properties | https://github.com/postcss/postcss-custom-properties | 
| postcss-each | https://github.com/outpunk/postcss-each | 
| postcss-font-magician | https://github.com/jonathantneal/postcss-font-magician | 
| postcss-for | https://github.com/antyakushev/postcss-for | 
| postcss-reporter | https://github.com/postcss/postcss-reporter | 
| postcss-sass-color-functions | https://github.com/adam-h/postcss-sass-color-functions | 
Test CSS Command
The sfc test:css command supports the visual testing of superflycss components and utilities by building the src/test/html/**/*.html content.  It has the following features:
- Nunjucks templating
- Highlighting of content contained in the Test-markupblock
- Generation of aTest-renderblock that copies and displays the markup contained in theTest-markupblock
Sample prebuilt content is shown below.  The markup contained in Test_markup will be highlighted, and a corresponding Test-render block will be generated after the Test_description block.  Note that the tree structure of the test markup must match the structure shown.
<div class="Test">
    <span class="Test_counter"></span>
    <span class="Test_component">Button</span>
    <div class="Test_container">
      <div class="Test_input">
          <div class="Test_when"></div>
          <div class="Test_description">When the <code>.Grid</code> container holds 2 <code>.Grid-cell</code> instances.</div>
          <pre class="Test_markup">
            <code class="html">
              <div class="Grid">
                  <!-- Use Nunjucks to keep markup DRY -->
                  {% for cell in ['1', '2'] %}
                      <div class="Grid_cell">{{cell}}/2</div>
                  {% endfor %}
               </div>
            </code>
          </pre>
      </div>
      <div class="Test_output">
          <div class="Test_then"></div>
          <div class="Test_description">Each grid cell occupies the same amount of space witin the grid container row.</div>
      </div>
  </div>Post the test build the content looks like this:
<div class="Test">
  <span class="Test_counter"></span>
  <span class="Test_component">Grid</span>
  <div class="Test_container">
    <div class="Test_input">
      <div class="Test_when"></div>
      <div class="Test_description">When the <code class="hljs"><span class="hljs-title">.Grid</span></code> container holds 2 <code class="hljs"><span class="hljs-title">.Grid-cell</span></code> instances.</div>
      <pre class="Test_markup">
            <code class="html hljs">
<div <span class="hljs-class"><span class="hljs-keyword">class</span></span>=<span class="hljs-string">"Grid"</span>>
  <span class="xml"><span class="hljs-comment"><!-- Use Nunjucks to keep markup DRY --></span>
      <span class="hljs-tag"><<span class="hljs-name">div</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"Grid_cell"</span>></span>1/2<span class="hljs-tag"></<span class="hljs-name">div</span>></span>
      <span class="hljs-tag"><<span class="hljs-name">div</span> <span class="hljs-attr">class</span>=<span class="hljs-string">"Grid_cell"</span>></span>2/2<span class="hljs-tag"></<span class="hljs-name">div</span>></span>
<span class="hljs-tag"></<span class="hljs-name">div</span>></span></span>
            </code>
          </pre>
    </div>
    <div class="Test_output">
      <div class="Test_then"></div>
      <div class="Test_description">Each grid cell occupies the same amount of space witin the grid container row.</div>
      <div class="Test_render">
        <div class="Grid">
          <!-- Use Nunjucks to keep markup DRY -->
          <div class="Grid_cell">1/2</div>
          <div class="Grid_cell">2/2</div>
        </div>
      </div>
    </div>
  </div>
</div>