pulumi/sdk/nodejs/runtime/index.ts
joeduffy c5281d29f7 Expose a log module
This exposes the existing runtime logging functionality in a way meant
for 3rd-parties to consume.  This can be useful if we want to introduce
debug logging, warnings, or other things, that fit nicely with the
Pulumi CLI and overall developer workflow.
2017-10-08 12:10:46 -07:00

10 lines
254 B
TypeScript

// Copyright 2016-2017, Pulumi Corporation. All rights reserved.
export * from "./closure";
export * from "./config";
export * from "./invoke";
export * from "./langhost";
export * from "./resource";
export * from "./rpc";
export * from "./settings";