You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@rolldown/pluginutils

Package Overview
Dependencies
Maintainers
3
Versions
111
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rolldown/pluginutils - npm Package Compare versions

Comparing version
1.0.0-beta.58
to
1.0.0-beta.59
+1
-1
package.json
{
"name": "@rolldown/pluginutils",
"version": "1.0.0-beta.58",
"version": "1.0.0-beta.59",
"homepage": "https://rolldown.rs/",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -16,7 +16,3 @@ # @rolldown/pluginutils

```ts
import {
exactRegex,
makeIdFiltersToMatchWithQuery,
prefixRegex,
} from '@rolldown/pluginutils';
import { exactRegex, makeIdFiltersToMatchWithQuery, prefixRegex } from '@rolldown/pluginutils';

@@ -53,7 +49,3 @@ // Match exactly 'foo.js'

// Build a filter expression
const filterExpr = and(
id(/\.ts$/),
moduleType('ts'),
query('foo', true),
);
const filterExpr = and(id(/\.ts$/), moduleType('ts'), query('foo', true));

@@ -60,0 +52,0 @@ // Usage in a plugin to define a hook filter