2
2
const { existsSync, mkdirSync, writeFileSync } = require ( 'fs' )
3
3
const { dirname } = require ( 'path' )
4
4
5
- const { sortOptions } = require ( '../../utils' )
5
+ const { sortOptions, warn } = require ( '../../utils' )
6
6
7
7
const { AUTOCOMPLETION_FILE } = require ( './constants' )
8
8
@@ -12,25 +12,33 @@ const { AUTOCOMPLETION_FILE } = require('./constants')
12
12
* @returns {void }
13
13
*/
14
14
const createAutocompletion = ( program ) => {
15
- const autocomplete = program . commands . reduce (
16
- ( prev , cmd ) => ( {
17
- ...prev ,
18
- [ cmd . name ( ) ] : {
19
- name : cmd . name ( ) ,
20
- description : cmd . description ( ) . split ( '\n' ) [ 0 ] ,
21
- options : cmd . options
22
- . filter ( ( option ) => ! option . hidden )
23
- . sort ( sortOptions )
24
- . map ( ( opt ) => ( { name : `--${ opt . name ( ) } ` , description : opt . description } ) ) ,
25
- } ,
26
- } ) ,
27
- { } ,
28
- )
15
+ try {
16
+ const autocomplete = program . commands . reduce (
17
+ ( prev , cmd ) => ( {
18
+ ...prev ,
19
+ [ cmd . name ( ) ] : {
20
+ name : cmd . name ( ) ,
21
+ description : cmd . description ( ) . split ( '\n' ) [ 0 ] ,
22
+ options : cmd . options
23
+ . filter ( ( option ) => ! option . hidden )
24
+ . sort ( sortOptions )
25
+ . map ( ( opt ) => ( { name : `--${ opt . name ( ) } ` , description : opt . description } ) ) ,
26
+ } ,
27
+ } ) ,
28
+ { } ,
29
+ )
29
30
30
- if ( ! existsSync ( dirname ( AUTOCOMPLETION_FILE ) ) ) {
31
- mkdirSync ( dirname ( AUTOCOMPLETION_FILE ) , { recursive : true } )
31
+ if ( ! existsSync ( dirname ( AUTOCOMPLETION_FILE ) ) ) {
32
+ mkdirSync ( dirname ( AUTOCOMPLETION_FILE ) , { recursive : true } )
33
+ }
34
+ writeFileSync ( AUTOCOMPLETION_FILE , JSON . stringify ( autocomplete ) , 'utf-8' )
35
+ } catch ( error_ ) {
36
+ // Sometimes it can happen that the autocomplete generation in the postinstall script lacks permissions
37
+ // to write files to the home directory of the user. Therefore just warn with the error and don't break install.
38
+ if ( error_ instanceof Error ) {
39
+ warn ( `could not create autocompletion.\n${ error_ . message } ` )
40
+ }
32
41
}
33
- writeFileSync ( AUTOCOMPLETION_FILE , JSON . stringify ( autocomplete ) , 'utf-8' )
34
42
}
35
43
36
44
module . exports = { createAutocompletion }
1 commit comments
github-actions[bot] commentedon Jan 18, 2022
📊 Benchmark results
Package size: 355 MB