Skip to content

Commit

Permalink
Allow npm-install and yarn-install to request python to build depende…
Browse files Browse the repository at this point in the history
…ncies
  • Loading branch information
c0d1ngm0nk3y committed Sep 13, 2024
1 parent 3bba3de commit dabd4b5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Usage examples can be found in the
- [Paketo Base Builder](https://github.com/paketo-buildpacks/base-builder) (for apps which do not leverage common C libraries)

This buildpack also includes the following utility buildpacks:
- [cPython CNB](https://github.com/paketo-buildpacks/cpython)
- [Procfile CNB](https://github.com/paketo-buildpacks/procfile)
- [Environment Variables CNB](https://github.com/paketo-buildpacks/environment-variables)
- [Image Labels CNB](https://github.com/paketo-buildpacks/image-labels)
Expand Down
10 changes: 10 additions & 0 deletions buildpack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ api = "0.7"
id = "paketo-buildpacks/node-engine"
version = "4.1.11"

[[order.group]]
id = "paketo-buildpacks/cpython"
optional = true
version = "1.13.7"

[[order.group]]
id = "paketo-buildpacks/yarn"
version = "1.3.15"
Expand Down Expand Up @@ -82,6 +87,11 @@ api = "0.7"
id = "paketo-buildpacks/node-engine"
version = "4.1.11"

[[order.group]]
id = "paketo-buildpacks/cpython"
optional = true
version = "1.13.7"

[[order.group]]
id = "paketo-buildpacks/npm-install"
version = "1.4.11"
Expand Down
5 changes: 4 additions & 1 deletion package.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
[[dependencies]]
uri = "urn:cnb:registry:paketo-buildpacks/[email protected]"

[[dependencies]]
uri = "urn:cnb:registry:paketo-buildpacks/[email protected]"

[[dependencies]]
uri = "urn:cnb:registry:paketo-buildpacks/[email protected]"

Expand All @@ -39,4 +42,4 @@
uri = "urn:cnb:registry:paketo-buildpacks/[email protected]"

[[dependencies]]
uri = "urn:cnb:registry:paketo-buildpacks/[email protected]"
uri = "urn:cnb:registry:paketo-buildpacks/[email protected]"

0 comments on commit dabd4b5

Please sign in to comment.