Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
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-2021
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 0 weekly downloads. As such, rollup-plugin-rebase popularity was classified as not 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.