Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@zsviczian/rollup-plugin-postprocess
Advanced tools
Find-and-replace postprocessing for Rollup output.
I got tired of npm install brettz9/rollup-plugin-postprocess#update --save-dev
and created my own identical fork with @brettz9's fix
More info here: https://github.com/developit/rollup-plugin-postprocess/issues/10
Apply regex find-and-replace postprocessing to your Rollup bundle.
npm i -D rollup-plugin-postprocess
Works just like a JavaScript String replace, including the funtion callback option.
postprocess()
expects an Array of [(RexExp) find, (String|Function) replace]
pairs. Alternatively, if a function is provided, it will be invoked for each bundle and can return said pairs.
import postprocess from 'rollup-plugin-postprocess';
export default {
plugins: [
postprocess([
[/\b(module\.exports=|export default )([a-zA-Z])/, '$1$2']
])
]
}
This example is more practical. Rollup places exports at the end of your bundle, which can often create single-use variables that Uglify does not collapse. Let's implement a find & replace that "moves" the export inline to save some bytes.
In this example, we'll make use of the fact that find/replacement pairs are executed in sequence. The first pair is used both to remove the existing export statement and to find the export type & identifier. By the time the second find/replace pair is processed, it can make use of the values found in the first pass.
import postprocess from 'rollup-plugin-postprocess';
let name, exportPrefix;
export default {
plugins: [
postprocess([
[
/(module\.exports\s*=\s*|export\s*default\s*)([a-zA-Z$_][a-zA-Z0-9$_]*)[;,]?/,
(str, prefix, id) => {
name = id;
exportPrefix = prefix;
// returning nothing is the same as an empty string
}
],
[
/^function\s([a-zA-Z$_][a-zA-Z0-9$_]*)/,
(str, id) => id==name ? `${exportPrefix} function` : str
]
])
]
};
FAQs
Find-and-replace postprocessing for Rollup output.
We found that @zsviczian/rollup-plugin-postprocess demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.