Socket
Book a DemoInstallSign in
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.

latest
Source
npmnpm
Version
0.4.2
Version published
Maintainers
4
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