This message was deleted.
# general
s
This message was deleted.
c
Uh
That looks like an error in one of the libraries?
what the heck
f
I just tried `npm install`'ing again but no updates.
c
Can you share your node version and package.json?
f
Copy code
{
  "name": "aws-ts-eks",
  "devDependencies": {
    "@types/node": "latest"
  },
  "dependencies": {
    "@pulumi/pulumi": "latest",
    "@pulumi/aws-infra": "latest",
    "@pulumi/eks": "latest",
    "@pulumi/kubernetes": "latest"
  }
}
Node 6.2.2
i
It looks like the
got
dependency only supports Node 8 or above - I’m not sure which package brought in that dependency, though.
The object spread operator
...
is too new for Node 6
Copy code
▶ yarn why got
yarn why v1.3.2
warning package.json: No license field
[1/4] 🤔   Why do we have the module "got"...?
[2/4] 🚚   Initialising dependency graph...
warning aws-ts-eks: No license field
[3/4] 🔍   Finding dependency...
[4/4] 🚡   Calculating file sizes...
info This module exists because "@pulumi/kubernetes" depends on it.
info Disk size without dependencies: "140kB"
info Disk size with unique dependencies: "376kB"
info Disk size with transitive dependencies: "648kB"
info Number of shared dependencies: 13
g
@incalculable-sundown-82514 the
got
dependency was to support URLs for k8s manifests rather than having to reference local files. Alex added it fairly recently
c
@full-dress-10026 did this work?
f
Updating to Node 8?
c
yes.
THat should fix it.
I’m filing a bug to move support to node 6, though, @full-dress-10026 in the mean time
in the mean time this should fix it.
f
I assume the rest of Pulumi modules are compatible with Node 8?
c
They should be.
But we’ll get this fixed ASAP.
👍 1