File tree 3 files changed +3
-14
lines changed 3 files changed +3
-14
lines changed Original file line number Diff line number Diff line change 35
35
node-version : ${{ matrix.node-version }}
36
36
cache : " npm"
37
37
38
- - name : Use latest NPM
39
- run : sudo npm i -g npm
40
-
41
38
- name : Install dependencies
42
39
run : npm ci
43
40
74
71
node-version : ${{ matrix.node-version }}
75
72
cache : " npm"
76
73
77
- - name : Use latest NPM on ubuntu/macos
78
- if : matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
79
- run : sudo npm i -g npm
80
-
81
- - name : Use latest NPM on windows
82
- if : matrix.os == 'windows-latest'
83
- run : npm i -g npm
84
-
85
74
- name : Install dependencies
86
75
run : npm ci
87
76
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ const template = /\[\\*([\w:]+)\\*\]/i;
37
37
* @property {string } filename
38
38
* @property {Asset["source"] } source
39
39
* @property {Force | undefined } force
40
- * @property {{ [key: string]: string } } info
40
+ * @property {{ [key: string]: any } } info
41
41
*/
42
42
43
43
/**
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export = CopyPlugin;
20
20
* @property {string } filename
21
21
* @property {Asset["source"] } source
22
22
* @property {Force | undefined } force
23
- * @property {{ [key: string]: string } } info
23
+ * @property {{ [key: string]: any } } info
24
24
*/
25
25
/**
26
26
* @typedef {string } StringPattern
@@ -217,7 +217,7 @@ type CopiedResult = {
217
217
source : Asset [ "source" ] ;
218
218
force : Force | undefined ;
219
219
info : {
220
- [ key : string ] : string ;
220
+ [ key : string ] : any ;
221
221
} ;
222
222
} ;
223
223
type StringPattern = string ;
You can’t perform that action at this time.
0 commit comments