pulumi/sdk/nodejs/index.ts
joeduffy d8635fd4f3 Move modules to package root
The organization of packages underneath lib/ breaks the easy consumption
of submodules, a la

    import {FileAsset} from "@pulumi/pulumi-fabric/asset";

We will go back to having everything hanging off the module root directory.
2017-09-04 11:35:21 -07:00

16 lines
410 B
TypeScript

// Copyright 2016-2017, Pulumi Corporation. All rights reserved.
// Enable source map support so we get good stack traces.
import "source-map-support/register";
// Export top-level elements.
export * from "./config";
export * from "./property";
export * from "./resource";
// Export submodules individually.
import * as asset from "./asset";
import * as runtime from "./runtime";
export {asset, runtime};