Simple functions shared among the sinon end user libraries
A CSS parser, transformer, and minifier written in Rust
A CSS parser, transformer, and minifier written in Rust
The progressive JavaScript framework for building modern web UI.
A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.
Sentry Bundler Plugin Core
Next-generation ES module bundler
Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.
Module Federation Runtime for webpack
A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.
The Linux 64-bit binary for esbuild, a JavaScript bundler.
A CSS parser, transformer, and minifier written in Rust
A CSS parser, transformer, and minifier written in Rust
A CSS parser, transformer, and minifier written in Rust
Generates complete single-page or multi-page website from source assets. Built-in support for Markdown, Eta, EJS, Handlebars, Nunjucks, Pug. Alternative to html-webpack-plugin.
An extremely fast JavaScript and CSS bundler and minifier.
A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.
A CSS parser, transformer, and minifier written in Rust
A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.
Internationalization plugin for Vue.js
A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.
Minimizer plugin for webpack
Domain name parser based on the Public Suffix List
A native C++ Node module for querying and subscribing to filesystem events. Used by Parcel 2.
`graph` generates a PNG file of the current `Gemfile(5)` as a dependency graph.
A bundler plugin that generates a visual representation of your gem dependencies.
Transaction::Simple provides a generic way to add active transaction support to objects. The transaction methods added by this module will work with most objects, excluding those that cannot be Marshal-ed (bindings, procedure objects, IO instances, or singleton objects). The transactions supported by Transaction::Simple are not associated with any sort of data store. They are "live" transactions occurring in memory on the object itself. This is to allow "test" changes to be made to an object before making the changes permanent. Transaction::Simple can handle an "infinite" number of transaction levels (limited only by memory). If I open two transactions, commit the second, but abort the first, the object will revert to the original version. Transaction::Simple supports "named" transactions, so that multiple levels of transactions can be committed, aborted, or rewound by referring to the appropriate name of the transaction. Names may be any object except nil. Transaction groups are also supported. A transaction group is an object wrapper that manages a group of objects as if they were a single object for the purpose of transaction management. All transactions for this group of objects should be performed against the transaction group object, not against individual objects in the group. Version 1.4.0 of Transaction::Simple adds a new post-rewind hook so that complex graph objects of the type in tests/tc_broken_graph.rb can correct themselves. Version 1.4.0.1 just fixes a simple bug with #transaction method handling during the deprecation warning. Version 1.4.0.2 is a small update for people who use Transaction::Simple in bundler (adding lib/transaction-simple.rb) and other scenarios where having Hoe as a runtime dependency (a bug fixed in Hoe several years ago, but not visible in Transaction::Simple because it has not needed a re-release). All of the files internally have also been marked as UTF-8, ensuring full Ruby 1.9 compatibility.