bun
No long description provided.
Installation
dagger install github.com/fluent-ci-templates/bun-pipeline@6898a8b802d1e2e720c8131ffcb6a9488e4de8abEntrypoint
Return Type
Bun Example
dagger -m github.com/fluent-ci-templates/bun-pipeline@6898a8b802d1e2e720c8131ffcb6a9488e4de8ab call \
func (m *MyModule) Example() *dagger.Bun {
return dag.
Bun()
}@function
def example() -> dagger.Bun:
return (
dag.bun()
)@func()
example(): Bun {
return dag
.bun()
}Types
Bun 🔗
test() 🔗
Run tests
Return Type
StringKind !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| src | Directory | - | No description provided |
| bunVersion | StringKind | - | No description provided |
Example
dagger -m github.com/fluent-ci-templates/bun-pipeline@6898a8b802d1e2e720c8131ffcb6a9488e4de8ab call \
testfunc (m *MyModule) Example() {
return dag.
Bun().
Test()
}@function
def example() -> :
return (
dag.bun()
.test()
)@func()
example(): {
return dag
.bun()
.test()
}run() 🔗
Run commands
Return Type
StringKind !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| command | StringKind ! | - | No description provided |
| src | Directory | - | No description provided |
| bunVersion | StringKind | - | No description provided |
Example
dagger -m github.com/fluent-ci-templates/bun-pipeline@6898a8b802d1e2e720c8131ffcb6a9488e4de8ab call \
runfunc (m *MyModule) Example(command ) {
return dag.
Bun().
Run(command)
}@function
def example(command: ) -> :
return (
dag.bun()
.run(command)
)@func()
example(command: ): {
return dag
.bun()
.run(command)
}