A webpack loader to convert .ink files into compiled story JSON, using the official inklecate binaries.
npm install inklecate-loadernpm i -D inklecate-loader
javascript
{
test: /\.ink$/,
use: require.resolve('inklecate-loader'),
options: {
/ Optional, include inklecate compiler options here /
},
}
`
Output
`javascript
/ 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!',
...
];
``