Dagger
Search

bun

No long description provided.

Installation

dagger install github.com/fluent-ci-templates/bun-pipeline@6898a8b802d1e2e720c8131ffcb6a9488e4de8ab

Entrypoint

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
NameTypeDefault ValueDescription
srcDirectory -No description provided
bunVersionStringKind -No description provided
Example
dagger -m github.com/fluent-ci-templates/bun-pipeline@6898a8b802d1e2e720c8131ffcb6a9488e4de8ab call \
 test
func (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
NameTypeDefault ValueDescription
commandStringKind !-No description provided
srcDirectory -No description provided
bunVersionStringKind -No description provided
Example
dagger -m github.com/fluent-ci-templates/bun-pipeline@6898a8b802d1e2e720c8131ffcb6a9488e4de8ab call \
 run
func (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)
}