Skip to content
DocPensieve

A first build

Module progress100%

Lesson 3 of 3 — the last one of this module.

Three commands

Build
npx docpensieve build writes the site into dist/.
Serve
npx docpensieve dev serves it, and rebuilds on every save.
Check
npx docpensieve check reads it back for dead links.

What comes out

  • dist
    • index.html — sends the reader to the current version
    • versions
      • v1.0 — every page, as plain HTML

Each page is a complete file, served as it is. The stylesheetThe only stylesheet of the site, compiled from the classes the pages use. comes along; no script does.

Well done

You have finished First steps. The next module shows how to organise pages and use components.

Next module: Writing well
Structure, series, and components in a real page.