npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

omit-tilde-webpack-plugin

v2.0.0

Published

Webpack plugin that allows module imports to omit a tilde

Downloads

8,944

Readme

Omit Tilde Webpack Plugin

NPM

Webpack plugin that allows module imports to omit a tilde.

This plugin is aware of your modules an will infer imports without a tilde.

Rationale

In some cases (e.g. SASS @import statements) Webpack requires you to indicate modules by using a tilde (~) prefix. Tilde is necessary to resolve an ambiguous import syntax in the given language.

You should use the tilde as best practice. However you may need this plugin while you migrate legacy code in which tilde was not used.

Example - Bootstrap

Normally to import Bootstrap you might need to do something like this:

@import "~bootstrap-sass-official/assets/stylesheets/.../bootstrap";

But in your legacy code you may have this:

@import "bootstrap-sass-official/assets/stylesheets/.../bootstrap";

This plugin allows your legacy code to work out of the box.

Changes in 2.x.x

There are many varied use cased for this plugin that the author cannot anticipate.

If version 1 was working for you but version 2 breaks your use case then immediately raise an issue.

The new version of the plugin requires less configuration.

It automatically detects modules so you do not need to specify include or exclude like did previously.

There is one breaking change in configuration.

  • If you were using test then you need to move it to request.test (see options below).

If you are unsure, use the verbose option to review file filtering and the deprecate option to display what was converted.

Usage

Do not wrap with webpack.ResolverPlugin(), use as a separate plugin.

In most cases you may use without specifying options. However the author strongly suggests you set deprecate:true.

var OmitTildeWebpackPlugin = require('omit-tilde-webpack-plugin');
{
  plugins : [
    new OmitTildeWebpackPlugin({
      deprecate: true
    })
  ]
}

If there are false positive warnings it is usually some problem with your webpack resolve configuration. If not, there are options that allow filtering.

Options

new OmitTildeWebpackPlugin({
  deprecate: true|false,
  verbose  : true|false,
  path     : { test: ..., include: ..., exclude: ... },
  request  : { test: ..., include: ..., exclude: ... }
}
  • deprecate implies that a warning should be generated whenever the plugin needs to operate.

    Use this to help migration from ommited tilde to appropriate use of tilde. It is not activiated by default but is strongly encouraged.

  • path is an optional object of conditions, similar to that for loaders.

    It filters the path in which the request is raised. It may inclued test, include, and exclude as (typically) regular expressions.

  • verbose implies that filtering information should be displayed.

    Set to true when debugging path or request conditions.

  • request is an optional object of conditions, similar to that for loaders.

    It filters the request itself. It may inclued test, include, and exclude as (typically) regular expressions.