Skip to content

juicyfx/vercel-runtimes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

94 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Vercel Runtimes

The main goal is to dig deeper into Vercel Runtimes.
The development started with PHP builder, which has been separated into vercel-php.
At this time this repository contains a testing versions of various runtimes.

πŸ•Ή f3l1x.io | πŸ’» f3l1x | 🐦 @xf3l1x

Builders

Plain

{
  "builds": [
    { "src": "file.txt", "use": "vercel-plain@0.0.2" }
  ]
}
{
  "builds": [
    { "src": "index.php", "use": "vercel-php@0.5.2" }
  ]
}

Markdown

{
  "builds": [
    {
      "src": "**/*.md",
      "use": "vercel-md@0.0.5",
      "config": {
      "title": "Demo Project",
      "css": [
        "https://CDN/lib.css",
        "/dist/theme.css"
      ],
      "js": [
        "https://CDN/lib.js",
        "/dist/main.js"
      ]
      }
    }
  ]
}

Debug

{
  "builds": [
    { "src": "file.txt", "use": "vercel-debug@0.0.1" }
  ]

πŸ“ License

Copyright Β© 2019 f3l1x. This project is MIT licensed.