https://github.com/angular/angular
Revision bfb738c3c372621d020ae7799c9336aefad1ce38 authored by Joey Perrott on 03 June 2021, 17:54:36 UTC, committed by Andrew Kushnir on 12 July 2021, 21:39:08 UTC
Create a `spawnSync` command for common usage, additionally update naming to use `spawn` instead of
`spawnWithDebugOutput`

PR Close #42394
1 parent eeef3e7
Raw File
Tip revision: bfb738c3c372621d020ae7799c9336aefad1ce38 authored by Joey Perrott on 03 June 2021, 17:54:36 UTC
refactor(dev-infra): add spawnSync to child process utils, normalize naming of child-process utils (#42394)
Tip revision: bfb738c
types.d.ts
/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.io/license
 */

// This file contains all ambient imports needed to compile the modules/ source code

/// <reference types="hammerjs" />
/// <reference types="jasmine" />
/// <reference types="jasminewd2" />
/// <reference types="node" />
/// <reference types="zone.js" />
/// <reference lib="es2015" />
/// <reference path="./system.d.ts" />
back to top