@casual-simulation/aux-vm-deno
TypeScript icon, indicating that this package has built-in type declarations

3.3.0 • Public • Published

AUX VM Deno

npm (scoped)

A set of utilities required to run an AUX in Deno.

Installation

  1. Install the NPM package
npm install @casual-simulation/aux-vm-deno
  1. Add the DenoEntry.ts file to your Webpack config:
entry: {
    deno: path.resolve(
        __dirname,
        'node_modules',
        '@casual-simulation',
        'aux-vm-deno',
        'vm',
        'DenoEntry.ts'
    ),
},
  1. Specify a specific output filename for the deno bundle.
output: {
    filename: (pathData) => {
        return pathData.chunk.name === 'deno' ? '[name].js' : '[name].[contenthash].js';
    },
}

Readme

Keywords

Package Sidebar

Install

npm i @casual-simulation/aux-vm-deno

Weekly Downloads

56

Version

3.3.0

License

MIT

Unpacked Size

37.2 kB

Total Files

26

Last publish

Collaborators

  • kallyngowdyyeti
  • casualsimulation