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.
Common errors
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'.
Warnings
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.
Install
npm install superdup-build-webpack yarn add superdup-build-webpack pnpm add superdup-build-webpack Imports
- build wrong
const { build } = require('superdup-build-webpack')correctimport { build } from 'superdup-build-webpack' - createConfig wrong
import createConfig from 'superdup-build-webpack'correctimport { createConfig } from 'superdup-build-webpack'
Quickstart
import { build } from 'superdup-build-webpack';
await build({ entry: './src/index.ts', outDir: './dist' });