0.4.2 • Published 8 months ago

@vertexvis/rollup-plugin-vertexvis-copyright v0.4.2

Weekly downloads
45
License
MIT
Repository
github
Last release
8 months ago

Vertex Rollup Copyright Plugin

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.')],
};
0.4.2

8 months ago

0.4.1

2 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.2.0

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago