File tree Expand file tree Collapse file tree 3 files changed +1350
-26
lines changed Expand file tree Collapse file tree 3 files changed +1350
-26
lines changed Original file line number Diff line number Diff line change 17
17
"node" : " >=18.0.0" ,
18
18
"pnpm" : " >=8.0.0"
19
19
},
20
- "packageManager" : " pnpm@8.15 .0" ,
20
+ "packageManager" : " pnpm@10.11 .0" ,
21
21
"scripts" : {
22
22
"analyze" : " turbo run analyze" ,
23
23
"lint" : " turbo run lint" ,
Original file line number Diff line number Diff line change @@ -5,4 +5,16 @@ export function log(message: string): void {
5
5
console . log ( `[AICD Core]: ${ message } ` ) ;
6
6
}
7
7
8
+ /**
9
+ * Test utility function for release pipeline validation
10
+ * @param input - The input string to validate
11
+ * @returns true if the input is valid, false otherwise
12
+ */
13
+ export function validateInput ( input : string ) : boolean {
14
+ if ( ! input || typeof input !== 'string' ) {
15
+ return false ;
16
+ }
17
+ return input . trim ( ) . length > 0 ;
18
+ }
19
+
8
20
export * from './types' ;
You can’t perform that action at this time.
0 commit comments