Files
backstage/.changeset/large-kangaroos-poke.md
T
Patrik Oldsberg bc87604c26 create-app: added explicit node-gyp dependency
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
2022-06-15 19:17:16 +02:00

415 B

@backstage/create-app
@backstage/create-app
patch

Added an explicit node-gyp dependency to the root package.json. This is to work around a bug in older versions of node-gyp that causes Python execution to fail on macOS.

You can add this workaround to your existing project by adding node-gyp as a devDependency in your root package.json file:

   "devDependencies": {
+    "node-gyp": "^9.0.0"
   },