Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 636 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 636 Bytes

lscbuild

Lightweight, Simple, Configuable builder

Install

from release

Download from https://github.com/common-creation/lscbuild/releases and unarchive tar.gz.

go install

Require: go 1.18+

go install github.com/common-creation/lscbuild/cmd/lscbuild@latest

YAML structure

For more information, please see wiki
https://github.com/common-creation/lscbuild/wiki/YAML-structure

version: 1
jobs:
  build:
    steps:
      - cmd: rm -rf node_modules
        if:
          - directory:
              exists: ./node_modules
      - cmd: yarn install --frozen-lockfile
      - cmd: yarn build