Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vertexvis/rollup-plugin-vertexvis-copyright

Package Overview
Dependencies
Maintainers
4
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vertexvis/rollup-plugin-vertexvis-copyright

Rollup plugin that prepends a Vertex copyright to JS bundles.

  • 0.4.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by200%
Maintainers
4
Weekly downloads
 
Created
Source

This project contains a Rollup plugin for prepending a Vertex copyright to generated JS bundles.

Usage

Add @vertexvis/rollup-plugin-vertex-copyright as an NPM dev dependency to your project.

// package.json
{
  "devDependencies": {
    "@vertexvis/rollup-plugin-vertex-copyright": "0.0.0"
  }
}

Import and add the plugin to your rollup.config.js file.

// rollup.config.js
import copyright from '@vertexvis/rollup-plugin-vertex-copyright';

export default {
  plugins: [copyright()],
};

A default copyright will be used. You can customize the copyright by passing in your own.

// rollup.config.js
import copyright from '@vertexvis/rollup-plugin-vertex-copyright';

export default {
  plugins: [copyright('My copyright.')],
};

FAQs

Package last updated on 06 Sep 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc