chromatic
No long description provided.
Installation
dagger install github.com/fluent-ci-templates/chromatic-pipeline@24cf928f2d52f4f1ba818fd3d8218cd282ce5487
Entrypoint
Return Type
Chromatic
Example
dagger -m github.com/fluent-ci-templates/chromatic-pipeline@24cf928f2d52f4f1ba818fd3d8218cd282ce5487 call \
func (m *MyModule) Example() *dagger.Chromatic {
return dag.
Chromatic()
}
@function
def example() -> dagger.Chromatic:
return (
dag.chromatic()
)
@func()
example(): Chromatic {
return dag
.chromatic()
}
Types
Chromatic 🔗
publish() 🔗
Publish storybook to Chromatic
Return Type
StringKind !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
src | Directory ! | - | No description provided |
token | Secret ! | - | No description provided |
Example
dagger -m github.com/fluent-ci-templates/chromatic-pipeline@24cf928f2d52f4f1ba818fd3d8218cd282ce5487 call \
publish
func (m *MyModule) Example(src , token ) {
return dag.
Chromatic().
Publish(src, token)
}
@function
def example(src: , token: ) -> :
return (
dag.chromatic()
.publish(src, token)
)
@func()
example(src: , token: ): {
return dag
.chromatic()
.publish(src, token)
}