Denoc

CodeQL Pylint Code Style PyPi Version Repo Size License: MIT Lines of Code

Compile Deno executables and compress them for all platforms easily.

Install

You can install denoc from PyPI like any other package:

pip install denoc

To get the last version:

pip install git+https:/github.com/UltiRequiem/denoc

If you use Linux, you may need to install this with sudo to be able to access the command throughout your system.

Usage

Basic usage:

denoc compileMe.ts

This will make a directory (deno_builds) with executables for all the supported platforms.

Optional flags:

denoc --outputDir deno_dir_output --compress True file.ts
  • outputDir: The directory where the binaries will be, by default the directory is deno_build

  • compress: Compress the binaries directory

Usage Example

  • Build and Publish GitHub Action

name: Compile

on:
  push:
    tags:
      - "*"

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/[email protected]

      - uses: denoland/[email protected]
        with:
          deno-version: v1.x

      - name: Install denoc
        run: pip install denoc

      - name: Build for all platforms
        run: denoc cli.ts

      - name: Release
        uses: softprops/[email protected]
        with:
          files: |
            deno_builds/x86_64-unknown-linux-gnu
            deno_builds/aarch64-apple-darwin 
            deno_builds/x86_64-apple-darwin
            deno_builds/x86_64-pc-windows-msvc.exe
          token: ${{ secrets.GITHUB_TOKEN }}

License

is licensed under the MIT License.

GitHub

https://github.com/UltiRequiem/denoc