0.1.14 • Published 2 years ago

@adlib/app v0.1.14

Weekly downloads
-
License
Unlicense
Repository
github
Last release
2 years ago

Adlib: Web app build tool

Personal TypeScript web app build tooling.

Getting Started

Install.

npm i -D @adlib/app

Init.

npm exec app -- init

Configure (package.json).

{
  "scripts": {
    "start": "app start -t <title>",
    "build": "app build -t <title>",
    "clean": "app clean"
  }
}

Where <title> is the web app HTML page title.

Files

  • Either src/index.tsx or src/index.ts must exist.
  • Static content will be copied from the public directory if it exists.
  • The public/index.html file will be used if it exists.
  • The public/favicon.png or public/favicon.ico file will be used if it exists.