An open API service indexing awesome lists of open source software.

https://github.com/peakwinter/stork

Static site generator based on Parcel, Pug, Typescript and SASS
https://github.com/peakwinter/stork

Last synced: 7 months ago
JSON representation

Static site generator based on Parcel, Pug, Typescript and SASS

Awesome Lists containing this project

README

          

# Stork

Static site generator based on Parcel, Pug, Typescript and SASS

## CLI

* [Stork](#stork)
* [Usage](#usage)
* [Commands](#commands)

# Usage

```sh-session
$ npm install -g stork-ssg
$ stork COMMAND
running command...
$ stork (-v|--version|version)
stork-ssg/1.1.0 darwin-x64 node-v10.15.3
$ stork --help [COMMAND]
USAGE
$ stork COMMAND
...
```

# Commands

* [`stork build`](#stork-build)
* [`stork help [COMMAND]`](#stork-help-command)
* [`stork serve`](#stork-serve)

## `stork build`

builds static site source files into a HTML/asset bundle

```
USAGE
$ stork build

OPTIONS
-h, --help show CLI help
-p, --path=path path to site source

EXAMPLE
$ stork build
✨ Built in 358ms.
```

_See code: [dist/commands/build.ts](https://github.com/peakwinter/stork/blob/v1.1.0/dist/commands/build.ts)_

## `stork help [COMMAND]`

display help for stork

```
USAGE
$ stork help [COMMAND]

ARGUMENTS
COMMAND command to show help for

OPTIONS
--all see all commands in CLI
```

_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v2.1.6/src/commands/help.ts)_

## `stork serve`

serves static site source files and rebuilds on changes

```
USAGE
$ stork serve

OPTIONS
-h, --help show CLI help
-p, --path=path path to site source

EXAMPLE
$ stork serve
✨ Built in 358ms.
```

_See code: [dist/commands/serve.ts](https://github.com/peakwinter/stork/blob/v1.1.0/dist/commands/serve.ts)_