@elliemae/pui-cli 8.35.3 → 8.36.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
- /// <reference types="node" />
2
- export declare const exec: (command: string, options?: import("execa").Options<null> | undefined) => Promise<import("execa").ExecaReturnValue<Buffer>>;
1
+ import { execaCommand } from 'execa';
2
+ export declare const exec: (command: string, options?: Parameters<typeof execaCommand>[1]) => Promise<import("execa").ExecaReturnValue<Buffer>>;
3
3
  export declare const logInfo: {
4
4
  (...data: any[]): void;
5
5
  (message?: any, ...optionalParams: any[]): void;
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import fs from 'node:fs';
3
2
  import { Application, Response } from 'express';
4
3
  type CSPConfig = {
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import http from 'node:http';
3
2
  import * as wsLib from 'ws';
4
3
  export interface Servers {
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  export declare const basePath: string;
3
2
  export declare const isApp: () => boolean;
4
3
  export declare const getAppConfig: () => Buffer | "{}";
@@ -1,4 +1,3 @@
1
- /// <reference types="node" />
2
1
  import zlib from 'zlib';
3
2
  import CompressionPlugin from 'compression-webpack-plugin';
4
3
  import { ObjectPattern } from 'copy-webpack-plugin';