build: log husky warnings on the console
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 27 Jan 2024 09:55:15 +0000 (10:55 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 27 Jan 2024 09:55:15 +0000 (10:55 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
pnpm-lock.yaml
prepare.mjs
src/deque.ts

index 0afba2957e158ec3048d5335e20ceeb97e39c088..b60150edbed7af790298907b5658287908e9b9b4 100644 (file)
@@ -592,7 +592,7 @@ packages:
     engines: {node: '>= 8'}
     dependencies:
       '@nodelib/fs.scandir': 2.1.5
-      fastq: 1.16.0
+      fastq: 1.17.0
     dev: true
 
   /@octokit/auth-token@4.0.0:
@@ -2653,8 +2653,8 @@ packages:
     resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
     dev: true
 
-  /fastq@1.16.0:
-    resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==}
+  /fastq@1.17.0:
+    resolution: {integrity: sha512-zGygtijUMT7jnk3h26kUms3BkSDp4IfIKjmnqI2tvx6nuBfiF1UqOxbnLfzdv+apBy+53oaImsKtMw/xYbW+1w==}
     dependencies:
       reusify: 1.0.4
     dev: true
index 9973a442186fbad3707ca715d52a350ff3501b5c..49da457e4e90379b745afade16dfc2ee2d6d3562 100644 (file)
@@ -2,5 +2,7 @@ import { env } from 'node:process'
 
 const isCIEnvironment = env.CI != null
 if (isCIEnvironment === false) {
-  import('husky').then(husky => husky.default()).catch(console.error)
+  import('husky')
+    .then(husky => console.warn(husky.default()))
+    .catch(console.error)
 }
index 0d55f5b665115b3c5efc2580fcdb56562926b340..52441a3ec25f4f7251575104a0884f9ffeb22d00 100644 (file)
@@ -35,7 +35,7 @@ export class Deque<T> {
    * Appends data to the deque.
    *
    * @param data - Data to append.
-   * @returns The new size of the queue.
+   * @returns The new size of the deque.
    */
   public push (data: T): number {
     const node: ILinkedListNode<T> = { data }
@@ -52,7 +52,7 @@ export class Deque<T> {
    * Prepends data to the deque.
    *
    * @param data - Data to prepend.
-   * @returns The new size of the queue.
+   * @returns The new size of the deque.
    */
   public unshift (data: T): number {
     const node: ILinkedListNode<T> = { data }