Skip to content

dorward/inklecate-loader

 
 

Repository files navigation

inklecate-loader

Introduction

A tiny loader for webpack which asynchronously calls the inklecate package, compiling Ink source into JavaScript.

Installation

npm i -D inklecate-loader

Usage

{
  test: /\.ink$/,
  use: require.resolve('inklecate-loader'),
  options: {
    /* Optional, defaults to true. false calls the inklecate binaries. */
    wasm: true,
  },
}

Output

/* The story object, to be passed to inkjs or etc. */
export const storyContent = { ... };

/* The original source code. */
export const text = '...';

/* Any warnings output by the compiler. */
export const compilerOutput = [
  'WARNING: Foo bar baz!',
  ...
];

About

A webpack loader to convert .ink files into compiled story JSON, using the official inklecate binaries.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%