├── .editorconfig ├── .gitattributes ├── .gitignore ├── .lefthook.yaml ├── Bakefile.sh ├── LICENSE ├── README.md ├── bake ├── basalt.toml ├── bin └── bake ├── docs ├── api.md ├── config.md ├── features.md ├── index.md └── tips.md └── tests ├── bakescripts ├── bake-v1.0.0.sh ├── bake-v1.10.1.sh ├── bake-v1.11.0.sh ├── bake-v1.11.1.sh ├── bake-v1.11.2.sh └── bake-v1.9.0.sh ├── bin └── stty ├── test_api.bats ├── test_basic.bats ├── test_cli.bats ├── test_compat.bats ├── test_config.bats └── util └── init.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | /bake linguist-generated 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .basalt/ 2 | site/ 3 | tests/**/bake 4 | -------------------------------------------------------------------------------- /.lefthook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/.lefthook.yaml -------------------------------------------------------------------------------- /Bakefile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/Bakefile.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/README.md -------------------------------------------------------------------------------- /bake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/bake -------------------------------------------------------------------------------- /basalt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/basalt.toml -------------------------------------------------------------------------------- /bin/bake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/bin/bake -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/docs/tips.md -------------------------------------------------------------------------------- /tests/bakescripts/bake-v1.0.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/tests/bakescripts/bake-v1.0.0.sh -------------------------------------------------------------------------------- /tests/bakescripts/bake-v1.10.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/tests/bakescripts/bake-v1.10.1.sh -------------------------------------------------------------------------------- /tests/bakescripts/bake-v1.11.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/tests/bakescripts/bake-v1.11.0.sh -------------------------------------------------------------------------------- /tests/bakescripts/bake-v1.11.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/tests/bakescripts/bake-v1.11.1.sh -------------------------------------------------------------------------------- /tests/bakescripts/bake-v1.11.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/tests/bakescripts/bake-v1.11.2.sh -------------------------------------------------------------------------------- /tests/bakescripts/bake-v1.9.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/tests/bakescripts/bake-v1.9.0.sh -------------------------------------------------------------------------------- /tests/bin/stty: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | printf '%s\n' '20 40' 3 | -------------------------------------------------------------------------------- /tests/test_api.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/tests/test_api.bats -------------------------------------------------------------------------------- /tests/test_basic.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/tests/test_basic.bats -------------------------------------------------------------------------------- /tests/test_cli.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/tests/test_cli.bats -------------------------------------------------------------------------------- /tests/test_compat.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/tests/test_compat.bats -------------------------------------------------------------------------------- /tests/test_config.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/tests/test_config.bats -------------------------------------------------------------------------------- /tests/util/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperupcall/bake/HEAD/tests/util/init.sh --------------------------------------------------------------------------------