File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 2020import { writeFileSync } from 'fs' ;
2121import { resolve } from 'path' ;
2222import { getInstalledPackages } from '../src/dev/npm' ;
23+ import { engines } from '../package' ;
2324import { LICENSE_OVERRIDES } from '../src/dev/license_checker' ;
2425
2526import { isNull , isUndefined } from 'lodash' ;
@@ -65,6 +66,24 @@ export default function licensesCSVReport(grunt) {
6566 dev,
6667 } ) ;
6768
69+ packages . unshift (
70+ {
71+ name : 'Node.js' ,
72+ version : engines . node ,
73+ repository : 'https://nodejs.org' ,
74+ licenses : [ 'MIT' ] ,
75+ } ,
76+ {
77+ name : 'Red Hat Universal Base Image minimal' ,
78+ verion : '8' ,
79+ repository :
80+ 'https://catalog.redhat.com/software/containers/ubi8/ubi-minimal/5c359a62bed8bd75a2c3fba8' ,
81+ licenses : [
82+ 'Custom;https://www.redhat.com/licenses/EULA_Red_Hat_Universal_Base_Image_English_20190422.pdf' ,
83+ ] ,
84+ }
85+ ) ;
86+
6887 const csv = packages
6988 . map ( ( pkg ) => {
7089 const data = {
You can’t perform that action at this time.
0 commit comments