demo-react-app
No long description provided.
Installation
dagger install github.com/kpenfound/demo-react-app@58fb6633dd14b5be19b4b98d3cc4adf8189e6ae2Entrypoint
Return Type
DemoReactApp Example
dagger -m github.com/kpenfound/demo-react-app@58fb6633dd14b5be19b4b98d3cc4adf8189e6ae2 call \
func (m *MyModule) Example() *dagger.DemoReactApp {
return dag.
DemoReactApp()
}@function
def example() -> dagger.DemoReactApp:
return (
dag.demo_react_app()
)@func()
example(): DemoReactApp {
return dag
.demoReactApp()
}Types
DemoReactApp 🔗
eslint() 🔗
Return Type
Eslint !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| source | Directory | - | The source directory for the project. |
| baseImageAddress | String | - | The base image to use. |
Example
dagger -m github.com/kpenfound/demo-react-app@58fb6633dd14b5be19b4b98d3cc4adf8189e6ae2 call \
eslintfunc (m *MyModule) Example() *dagger.Eslint {
return dag.
DemoReactApp().
Eslint()
}@function
def example() -> dagger.Eslint:
return (
dag.demo_react_app()
.eslint()
)@func()
example(): Eslint {
return dag
.demoReactApp()
.eslint()
}jest() 🔗
Return Type
Jest !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| source | Directory | - | The source directory for the project. |
| baseImageAddress | String | - | The base image to use. |
| packageManager | String | - | The package manager to use. |
Example
dagger -m github.com/kpenfound/demo-react-app@58fb6633dd14b5be19b4b98d3cc4adf8189e6ae2 call \
jestfunc (m *MyModule) Example() *dagger.Jest {
return dag.
DemoReactApp().
Jest()
}@function
def example() -> dagger.Jest:
return (
dag.demo_react_app()
.jest()
)@func()
example(): Jest {
return dag
.demoReactApp()
.jest()
}prettier() 🔗
Return Type
Prettier !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| source | Directory | - | The source directory for the project. |
| baseImageAddress | String | - | The base image to use. |
Example
dagger -m github.com/kpenfound/demo-react-app@58fb6633dd14b5be19b4b98d3cc4adf8189e6ae2 call \
prettierfunc (m *MyModule) Example() *dagger.Prettier {
return dag.
DemoReactApp().
Prettier()
}@function
def example() -> dagger.Prettier:
return (
dag.demo_react_app()
.prettier()
)@func()
example(): Prettier {
return dag
.demoReactApp()
.prettier()
}