cold-train-5848
11/04/2018, 10:59 PMmaster
, when I do pulumi new
it creates a package.json
, which contains the following lines which point to the latest stable version:
"dependencies": {
"@pulumi/pulumi": "latest",
"@pulumi/kubernetes": "latest"
}
After I update package.json
to point to the latest master version as below:
"dependencies": {
"@pulumi/pulumi": "<https://github.com/pulumi/pulumi.git>",
"@pulumi/kubernetes": "<https://github.com/pulumi/pulumi-kubernetes.git>"
}
And I run yarn install
I'm getting the following error when doing `pulumi up`:
error: It looks like the Pulumi SDK has not been installed. Have you run npm install or yarn install?
error: failed to load language plugin nodejs: could not read plugin [/home/shai/go/bin/pulumi-language-nodejs] stdout: EOF
white-balloon-205
@pulumi/pulumi
NPM module sources are at https://github.com/pulumi/pulumi/tree/master/sdk/nodejs, but the details like version and preinstall steps are inserted by the build process (make
in that folder).cold-train-5848
11/04/2018, 11:43 PMwhite-balloon-205
make build
should set up the links, and then from your app just do yarn link <@UB8C33JJG>/pulumi
.cold-train-5848
11/05/2018, 9:09 AM$ yarn link @pulumi/pulumi
success Using linked package for "@pulumi/pulumi".
$ yarn link @pulumi/docker
error No registered package found called "@pulumi/docker".
make
on the pulumi/pulumi-docker
repo I'm getting errors:
docker.ts:18:32 - error TS2307: Cannot find module 'child_process'.
docker.ts:19:25 - error TS2307: Cannot find module 'semver'.
docker.ts:556:27 - error TS2580: Cannot find name 'Buffer'. Do you need to install type definitions for node? Try `npm i @types/node`.
white-balloon-205
make ensure
prior to make
to install dependencies.cold-train-5848
11/05/2018, 5:18 PM