JSPM

deassert-loader

1.3.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q27171F
  • License BSD-3-Clause

webpack loader for deassert

Package Exports

  • deassert-loader

Readme

Deassert Loader

npm version CI Coverage Status
code style: prettier GitHub Discussions BSD 3 Clause license Commitizen friendly semantic-release

Any donations would be much appreciated. 😄

Enterprise Users

deassert is available as part of the Tidelift Subscription.

Tidelift is working with the maintainers of deassert and a growing network of open source maintainers to ensure your open source software supply chain meets enterprise standards now and into the future. Learn more.

Installation

# Install with npm
npm install -D deassert-loader

# Install with pnpm
pnpm add -D deassert-loader

# Install with yarn
yarn add -D deassert-loader

# Install with bun
bun add -D deassert-loader

Usage

You probably don't want to use this library in your development builds. It's designed to be used in your production builds.

// webpack.config.js

const isProduction = process.env.NODE_ENV === "production";

module.exports = {
  // ...
  module: {
    rules: isProduction
      ? [
          {
            test: /\.js?$/u,
            use: "deassert-loader",
            exclude: /node_modules/u,
          },
        ]
      : [],
  },
};