boi-transpiler

raw JSON →
0.0.12 verified Fri May 01 auth: no javascript abandoned

Transpile Boi configuration files into Webpack configurations and dependencies. Version 0.0.12, experimental. Part of the Boi ecosystem for building webpack configs from higher-level Boi schemas. No stable release cadence; appears abandoned since 2018. Not recommended for new projects.

gotcha Package is unmaintained since 2018. No updates for compatibility with modern Webpack versions (4/5). May produce invalid configurations.
fix Consider alternatives like webpack-cli or custom webpack configs.
breaking Transpiled output may rely on Webpack 3 APIs, not compatible with Webpack 4+ without manual adjustments.
fix Manually update the produced webpack config to match your Webpack version.
npm install boi-my-transpiler
yarn add boi-my-transpiler
pnpm add boi-my-transpiler

Shows basic usage of transpile function to convert Boi config to Webpack config.

import transpile from 'boi-my-transpiler';
const boiConfig = { entry: './src/index.js', output: { path: './dist', filename: 'bundle.js' } };
const webpackConfig = transpile(boiConfig);
console.log(webpackConfig);
// Example output shows Webpack configuration object
// Note: This package is unmaintained; use at own risk.