Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 745 Bytes

INSTALL.md

File metadata and controls

46 lines (32 loc) · 745 Bytes

Installation Guide

Prepare a package.json file

You need to have a package.json in your project root. If you do not have the file, create it:

{
  "private": true
}

Install qieyun-js

Run the following command:

npm install qieyun@0.12.0

This command will affect package.json and package-lock.json.

If you need to reinstall, run the following command:

npm install

Install purescript-qieyun

Add the following lines in packages.dhall.

  with qieyun =
    { dependencies = [ "effect", "nullable", "psci-support" ]
    , repo = "https://github.com/nk2028/purescript-qieyun.git"
    , version = "v0.5.0"
    }

Install the package:

spago install qieyun
spago build