We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9347bee commit 65aaa1dCopy full SHA for 65aaa1d
bake/utopia/node.rb
@@ -22,7 +22,8 @@ def update
22
# Fetch only production dependencies using `npm ls --production`
23
production_packages = fetch_production_packages(package_root)
24
package_paths = expand_package_paths(package_root).select do |path|
25
- production_packages.include?(path.basename.to_s)
+ package_name = path.relative_path_from(package_root).to_s
26
+ production_packages.include?(package_name)
27
end
28
29
package_paths.each do |package_path|
0 commit comments