Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mjeanroy/rollup-plugin-license
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.7.0
Choose a base ref
...
head repository: mjeanroy/rollup-plugin-license
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.8.0
Choose a head ref
Loading
Showing with 24 additions and 24 deletions.
  1. +1 −1 .github/workflows/build.yml
  2. +1 −1 dist/index.d.ts
  3. +21 −21 package.json
  4. +1 −1 src/index.d.ts
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ jobs:
strategy:
matrix:
os: [ windows-latest, ubuntu-latest, macos-latest ]
node: [ 10, 11, 12, 13, 14, 15, 16, 17 ]
node: [ 10, 11, 12, 13, 14, 15, 16, 17, 18 ]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ export interface Person {
/**
* @see {@link https://github.com/mjeanroy/rollup-plugin-license#comment-style}
*/
export type CommentStyle = 'regular' | 'ignored' | 'slash';
export type CommentStyle = 'regular' | 'ignored' | 'slash' | 'none';

/**
* Banner content descriptor.
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rollup-plugin-license",
"version": "2.7.0",
"version": "2.8.0",
"description": "Rollup plugin to add license banner to the final bundle and output third party licenses",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -36,31 +36,31 @@
"rollup": "^1.0.0 || ^2.0.0"
},
"dependencies": {
"commenting": "1.1.0",
"glob": "7.2.0",
"lodash": "4.17.21",
"magic-string": "0.26.1",
"mkdirp": "1.0.4",
"moment": "2.29.2",
"package-name-regex": "2.0.6",
"spdx-expression-validate": "2.0.0",
"spdx-satisfies": "5.0.1"
"commenting": "~1.1.0",
"glob": "~7.2.0",
"lodash": "~4.17.21",
"magic-string": "~0.26.2",
"mkdirp": "~1.0.4",
"moment": "~2.29.3",
"package-name-regex": "~2.0.6",
"spdx-expression-validate": "~2.0.0",
"spdx-satisfies": "~5.0.1"
},
"devDependencies": {
"@babel/core": "7.17.9",
"@babel/preset-env": "7.16.11",
"@babel/core": "7.18.2",
"@babel/preset-env": "7.18.2",
"@babel/register": "7.17.7",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "21.0.3",
"@rollup/plugin-node-resolve": "13.2.0",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@typescript-eslint/eslint-plugin": "5.26.0",
"@typescript-eslint/parser": "5.26.0",
"babel-plugin-add-module-exports": "1.0.4",
"eslint": "8.13.0",
"eslint": "8.16.0",
"eslint-config-google": "0.14.0",
"fancy-log": "2.0.0",
"fs-extra": "10.0.1",
"globalthis": "1.0.2",
"fs-extra": "10.1.0",
"globalthis": "1.0.3",
"gulp": "4.0.2",
"gulp-bump": "3.2.0",
"gulp-conventional-changelog": "2.0.35",
@@ -71,11 +71,11 @@
"jasmine-core": "3.10.1",
"prettier": "2.6.2",
"rimraf": "3.0.2",
"rollup": "2.70.1",
"rollup": "2.75.0",
"rollup-plugin-prettier": "2.2.2",
"rollup-plugin-strip-banner": "2.0.0",
"tmp": "0.2.1",
"typescript": "4.6.3"
"typescript": "4.7.2"
},
"engines": {
"node": ">=10.0.0"
2 changes: 1 addition & 1 deletion src/index.d.ts
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ export interface Person {
/**
* @see {@link https://github.com/mjeanroy/rollup-plugin-license#comment-style}
*/
export type CommentStyle = 'regular' | 'ignored' | 'slash';
export type CommentStyle = 'regular' | 'ignored' | 'slash' | 'none';

/**
* Banner content descriptor.