Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
rollup-plugin-rebase
Advanced tools
The Rollup Rebase Plugin copies static assets as required from your JavaScript code to the destination folder and adjusts the references in there to point to the new location.
The Rollup Rebase Plugin copies static assets as required from your JavaScript code to the destination folder and adjusts the references in there to point to the new location. It also respects assets referenced from your CSS/SCSS files.
@import
via PostCSS Import into the origin files.The plugin is meant as a tool for preparing a library for being published. In this it differs from plugins like Rollup URL Plugin as it is designed for usage in libraries and not for applications. The output of this plugin can be used by tools like Webpacks File Loader, URL Loader or the already mentioned Rollup URL Plugin.
$ npm install --save-dev rollup-plugin-rebase
or
$ yarn add --dev rollup-plugin-rebase
You can configure Rollup Rebase as part of your Rollup configuration. This can be either done in a rollup.config.js
or by scripting using the Rollup API:
import { rollup } from "rollup"
import rebasePlugin from "rollup-plugin-rebase"
async function config() {
const bundle = await rollup({
input: "./src/index.js",
plugins: [rebasePlugin()]
})
await bundle.write({
dest: "./lib/index.js"
})
}
config()
assetFolder
: When set assets are placed inside a sub folder with that name.keepName
: If true
, generated filenames will be ${filename}~${hash}.${ext}
instead of just ${hash}.${ext}
verbose
: If true
, increases log levelinclude
: Standard include option for rollup plugins.exclude
: Standard exclude option for rollup plugins.Copyright 2016-2022
Sebastian Software GmbH
FAQs
The Rollup Rebase Plugin copies static assets as required from your JavaScript code to the destination folder and adjusts the references in there to point to the new location.
The npm package rollup-plugin-rebase receives a total of 1,324 weekly downloads. As such, rollup-plugin-rebase popularity was classified as popular.
We found that rollup-plugin-rebase demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.