https://pulumi.com logo
b

big-piano-35669

09/13/2018, 8:41 PM
Hi Sophie, Pulumi will respect the
main
field in the NPM
package.json
file (https://docs.npmjs.com/files/package.json#main). So, for example
Copy code
{
    "name": "my-project",
    "main": "bin/index.js",
    ...
}
will instruct Pulumi to load the main file from
./bin/index.js
.
a

able-megabyte-54679

09/13/2018, 9:04 PM
Thank you, Joe. That's very useful