superdup-build-webpack

raw JSON →
0.0.91-build.80 verified Sat Apr 25 auth: no javascript

An automated build system for webpack projects currently at v0.0.91-build.80 (pre-release). Provides zero-config builds with sensible defaults, TypeScript support, and integration with common webpack loaders. Distinctive for its experimental build tracking and version suffixing. Minimal public documentation and unstable API.

error Module not found: Error: Can't resolve 'superdup-build-webpack'
cause Package not installed or name misspelled
fix
Run 'npm install superdup-build-webpack' and ensure the import path is correct.
error TypeError: superdup_build_webpack_1.build is not a function
cause Default import used when export is named
fix
Use named import: import { build } from 'superdup-build-webpack'.
breaking Package versioning uses build numbers (e.g., 0.0.91-build.80) which may not follow semver; breaking changes can occur in any release.
fix Pin to exact version and test updates thoroughly.
gotcha The package is pre-release and may have undocumented breaking changes between builds.
fix Review changelog (if available) before upgrading.
npm install superdup-build-webpack
yarn add superdup-build-webpack
pnpm add superdup-build-webpack

Shows the primary build function usage with entry and output directory options.

import { build } from 'superdup-build-webpack';
await build({ entry: './src/index.ts', outDir: './dist' });