Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions packages/sh/test/__snapshots__/fixtures.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -882,8 +882,10 @@ exports[`parser and printer > should format 398.Dockerfile fixtures > 398.Docker
`;

exports[`parser and printer > should format 441.Dockerfile fixtures > 441.Dockerfile 1`] = `
"RUN # cleanup
ls -la
"RUN # install dependencies
NODE_ENV=production npm install-clean \\
# cleanup
&& /usr/bin/env bash <(curl -fsSL https://raw.githubusercontent.com/softvisio/scripts/main/env-build-node.sh) cleanup
"
`;

Expand Down
5 changes: 4 additions & 1 deletion packages/sh/test/fixtures/441.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
RUN \
# install dependencies
NODE_ENV=production npm install-clean \
\
# cleanup
ls -la
&& /usr/bin/env bash <(curl -fsSL https://raw.githubusercontent.com/softvisio/scripts/main/env-build-node.sh) cleanup
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5607,9 +5607,9 @@ __metadata:
linkType: hard

"abbrev@npm:^3.0.0":
version: 3.0.0
resolution: "abbrev@npm:3.0.0"
checksum: 10c0/049704186396f571650eb7b22ed3627b77a5aedf98bb83caf2eac81ca2a3e25e795394b0464cfb2d6076df3db6a5312139eac5b6a126ca296ac53c5008069c28
version: 3.0.1
resolution: "abbrev@npm:3.0.1"
checksum: 10c0/21ba8f574ea57a3106d6d35623f2c4a9111d9ee3e9a5be47baed46ec2457d2eac46e07a5c4a60186f88cb98abbe3e24f2d4cca70bc2b12f1692523e2209a9ccf
languageName: node
linkType: hard

Expand Down
Loading