forked from open-template-hub/swagger-decorators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependency-checker.ts
79 lines (62 loc) · 2.32 KB
/
dependency-checker.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
const { spawnSync } = require( 'child_process' );
const outdatedCmd = spawnSync( 'npm', [ 'outdated' ] );
const lines = outdatedCmd.stdout.toString().split( '\n' );
const columnIndexes = [ 0, 0, 0, 0 ];
let indexOfDependedBy = -1;
console.log(
'<p align="center">\n' +
' <a href="https://opentemplatehub.com">\n' +
' <img src="https://raw.githubusercontent.com/open-template-hub/open-template-hub.github.io/master/assets/logo/library/swagger-decorators-logo.png" alt="Logo" width=200>\n' +
' </a>\n' +
'</p>\n' +
'\n' +
'\n' +
'<h1 align="center">\n' +
'Open Template Hub - Swagger Decorators v1\n' +
' <br/>\n' +
'(outdated packages)\n' +
'</h1>\n' +
'\n' +
'Following packages are not updated in the develop branch yet. So, if you want to update outdated packages on your own risk, update the package.json and install dependencies.\n'
);
for ( const line of lines ) {
if ( line.length === 0 ) {
continue;
}
if ( lines.indexOf( line ) === 0 ) {
columnIndexes[ 0 ] = line.indexOf( 'Current' );
columnIndexes[ 1 ] = line.indexOf( 'Wanted' ) + 3;
columnIndexes[ 2 ] = line.indexOf( 'Latest' ) + 6;
columnIndexes[ 3 ] = line.indexOf( 'Location' ) + 9;
}
let modifiedLine = '';
if ( columnIndexes [ 0 ] >= 0 ) {
const stringParts = line.split( /(\s+)/ );
modifiedLine += '| ';
for ( let i = 0; i < stringParts.length; ++i ) {
const part = stringParts[ i ];
if ( lines.indexOf( line ) === 0 && i < stringParts.length - 1 && stringParts[ i + 1 ] === 'Depended' ) {
indexOfDependedBy = i;
}
if ( indexOfDependedBy !== -1 && i >= indexOfDependedBy ) {
continue;
}
if ( part.match( /\s+/ ) ) {
modifiedLine += ' | ';
} else {
modifiedLine += part;
}
}
modifiedLine += ' |';
console.log( modifiedLine );
} else {
console.log( modifiedLine );
}
if ( lines.indexOf( line ) === 0 ) {
console.log( '| --- | --- | --- | --- | --- |' );
}
}
console.log(
'\n' +
'<table align="right"><tr><td><a href="https://opentemplatehub.com"><img src="https://raw.githubusercontent.com/open-template-hub/open-template-hub.github.io/master/assets/logo/brand-logo.png" width="50px" alt="oth"/></a></td><td><b>Open Template Hub © 2023</b></td></tr></table>\n'
);