stdlib: rename dagger.io/llb to dagger.io/dagger/op

Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
This commit is contained in:
Solomon Hykes
2021-04-06 00:27:51 +00:00
parent 7fb90790f3
commit 6673ae69b3
26 changed files with 143 additions and 143 deletions

View File

@@ -3,7 +3,7 @@ package yarn
import (
"dagger.io/dagger"
"dagger.io/alpine"
"dagger.io/llb"
"dagger.io/dagger/op"
)
// Yarn Script
@@ -22,13 +22,13 @@ import (
env?: [string]: string
#up: [
llb.#Load & {
op.#Load & {
from: alpine.#Image & {
package: bash: "=~5.1"
package: yarn: "=~1.22"
}
},
llb.#Exec & {
op.#Exec & {
args: [
"/bin/bash",
"--noprofile",
@@ -56,7 +56,7 @@ import (
"/cache/yarn": "cache"
}
},
llb.#Subdir & {
op.#Subdir & {
dir: "/build"
},
]