├── .gitattributes ├── .github ├── alfons-banner.png ├── alfons-logo-64x.png ├── alfons-logo.svg ├── dependency-graph ├── dependency-graph.png └── workflows │ └── main.yml ├── .gitignore ├── Alfons.moon ├── Alfons.yue ├── LICENSE ├── README.md ├── alfons.lua ├── alfons ├── env.moon ├── file.moon ├── getopt.moon ├── help.moon ├── init.moon ├── look.moon ├── parser.moon ├── provide.moon ├── setfenv.moon ├── tasks │ ├── fetch.lua │ ├── fetch.moon │ ├── teal.lua │ └── teal.moon ├── version.moon └── wildcard.moon ├── bin ├── alfons.moon ├── completion.bash ├── completion.fish └── completion.zsh ├── docs ├── README.md ├── api.md ├── arguments.md ├── autocompletion.md ├── branding.md ├── build.md ├── documenting.md ├── environment.md ├── loading.md ├── provide.md ├── recipes.md ├── teal.md ├── tutorial.md └── watch.md ├── rock-dev.yml ├── rock.yml ├── rockspecs ├── alfons-4.0-1.rockspec ├── alfons-4.0.1-1.rockspec ├── alfons-4.0.2-1.rockspec ├── alfons-4.1-1.rockspec ├── alfons-4.1.1-1.rockspec ├── alfons-4.1.3-1.rockspec ├── alfons-4.1.4-1.rockspec ├── alfons-4.2-1.rockspec ├── alfons-4.2.1-1.rockspec ├── alfons-4.2.2-1.rockspec ├── alfons-4.3-1.rockspec ├── alfons-4.4-1.rockspec ├── alfons-4.4.1-1.rockspec ├── alfons-5.0.0-1.rockspec ├── alfons-5.0.1-1.rockspec ├── alfons-5.0.2-1.rockspec ├── alfons-5.1-1.rockspec ├── alfons-5.2-1.rockspec ├── alfons-5.2.1-1.rockspec ├── alfons-5.2.2-1.rockspec ├── alfons-5.3-1.rockspec ├── alfons-5.3.1-1.rockspec ├── alfons-dev-5.0.2-1.rockspec ├── alfons-dev-5.1-1.rockspec ├── alfons-dev-5.2-1.rockspec └── alfons-dev-5.2.1-1.rockspec └── test ├── alfons ├── dusubalf.moon ├── graph-proof │ ├── a.moon │ ├── b.moon │ ├── c.moon │ ├── d.moon │ ├── e.moon │ ├── f.moon │ └── main.moon ├── lua.lua ├── main.moon ├── predet.moon ├── predet2.moon ├── sidea.moon ├── sideb.moon ├── storea.moon ├── storeb.moon ├── subalf.moon ├── teal-table.tl └── teal.tl ├── graph-proof.moon ├── lua.moon ├── predet.moon ├── runString.moon ├── store.moon └── teal.moon /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/alfons-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/.github/alfons-banner.png -------------------------------------------------------------------------------- /.github/alfons-logo-64x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/.github/alfons-logo-64x.png -------------------------------------------------------------------------------- /.github/alfons-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/.github/alfons-logo.svg -------------------------------------------------------------------------------- /.github/dependency-graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/.github/dependency-graph -------------------------------------------------------------------------------- /.github/dependency-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/.github/dependency-graph.png -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode -------------------------------------------------------------------------------- /Alfons.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/Alfons.moon -------------------------------------------------------------------------------- /Alfons.yue: -------------------------------------------------------------------------------- 1 | tasks: 2 | test: => "Hello from Yuescript!" |> show 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/README.md -------------------------------------------------------------------------------- /alfons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons.lua -------------------------------------------------------------------------------- /alfons/env.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/env.moon -------------------------------------------------------------------------------- /alfons/file.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/file.moon -------------------------------------------------------------------------------- /alfons/getopt.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/getopt.moon -------------------------------------------------------------------------------- /alfons/help.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/help.moon -------------------------------------------------------------------------------- /alfons/init.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/init.moon -------------------------------------------------------------------------------- /alfons/look.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/look.moon -------------------------------------------------------------------------------- /alfons/parser.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/parser.moon -------------------------------------------------------------------------------- /alfons/provide.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/provide.moon -------------------------------------------------------------------------------- /alfons/setfenv.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/setfenv.moon -------------------------------------------------------------------------------- /alfons/tasks/fetch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/tasks/fetch.lua -------------------------------------------------------------------------------- /alfons/tasks/fetch.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/tasks/fetch.moon -------------------------------------------------------------------------------- /alfons/tasks/teal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/tasks/teal.lua -------------------------------------------------------------------------------- /alfons/tasks/teal.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/tasks/teal.moon -------------------------------------------------------------------------------- /alfons/version.moon: -------------------------------------------------------------------------------- 1 | VERSION: "5.3.1" 2 | -------------------------------------------------------------------------------- /alfons/wildcard.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/alfons/wildcard.moon -------------------------------------------------------------------------------- /bin/alfons.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/bin/alfons.moon -------------------------------------------------------------------------------- /bin/completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/bin/completion.bash -------------------------------------------------------------------------------- /bin/completion.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/bin/completion.fish -------------------------------------------------------------------------------- /bin/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/bin/completion.zsh -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/arguments.md -------------------------------------------------------------------------------- /docs/autocompletion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/autocompletion.md -------------------------------------------------------------------------------- /docs/branding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/branding.md -------------------------------------------------------------------------------- /docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/build.md -------------------------------------------------------------------------------- /docs/documenting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/documenting.md -------------------------------------------------------------------------------- /docs/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/environment.md -------------------------------------------------------------------------------- /docs/loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/loading.md -------------------------------------------------------------------------------- /docs/provide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/provide.md -------------------------------------------------------------------------------- /docs/recipes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/recipes.md -------------------------------------------------------------------------------- /docs/teal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/teal.md -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/tutorial.md -------------------------------------------------------------------------------- /docs/watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/docs/watch.md -------------------------------------------------------------------------------- /rock-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rock-dev.yml -------------------------------------------------------------------------------- /rock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rock.yml -------------------------------------------------------------------------------- /rockspecs/alfons-4.0-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-4.0-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-4.0.1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-4.0.1-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-4.0.2-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-4.0.2-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-4.1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-4.1-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-4.1.1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-4.1.1-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-4.1.3-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-4.1.3-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-4.1.4-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-4.1.4-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-4.2-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-4.2-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-4.2.1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-4.2.1-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-4.2.2-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-4.2.2-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-4.3-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-4.3-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-4.4-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-4.4-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-4.4.1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-4.4.1-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-5.0.0-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-5.0.0-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-5.0.1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-5.0.1-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-5.0.2-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-5.0.2-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-5.1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-5.1-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-5.2-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-5.2-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-5.2.1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-5.2.1-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-5.2.2-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-5.2.2-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-5.3-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-5.3-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-5.3.1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-5.3.1-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-dev-5.0.2-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-dev-5.0.2-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-dev-5.1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-dev-5.1-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-dev-5.2-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-dev-5.2-1.rockspec -------------------------------------------------------------------------------- /rockspecs/alfons-dev-5.2.1-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/rockspecs/alfons-dev-5.2.1-1.rockspec -------------------------------------------------------------------------------- /test/alfons/dusubalf.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/dusubalf.moon -------------------------------------------------------------------------------- /test/alfons/graph-proof/a.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/graph-proof/a.moon -------------------------------------------------------------------------------- /test/alfons/graph-proof/b.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/graph-proof/b.moon -------------------------------------------------------------------------------- /test/alfons/graph-proof/c.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/graph-proof/c.moon -------------------------------------------------------------------------------- /test/alfons/graph-proof/d.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/graph-proof/d.moon -------------------------------------------------------------------------------- /test/alfons/graph-proof/e.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/graph-proof/e.moon -------------------------------------------------------------------------------- /test/alfons/graph-proof/f.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/graph-proof/f.moon -------------------------------------------------------------------------------- /test/alfons/graph-proof/main.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/graph-proof/main.moon -------------------------------------------------------------------------------- /test/alfons/lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/lua.lua -------------------------------------------------------------------------------- /test/alfons/main.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/main.moon -------------------------------------------------------------------------------- /test/alfons/predet.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/predet.moon -------------------------------------------------------------------------------- /test/alfons/predet2.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/predet2.moon -------------------------------------------------------------------------------- /test/alfons/sidea.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/sidea.moon -------------------------------------------------------------------------------- /test/alfons/sideb.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/sideb.moon -------------------------------------------------------------------------------- /test/alfons/storea.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/storea.moon -------------------------------------------------------------------------------- /test/alfons/storeb.moon: -------------------------------------------------------------------------------- 1 | tasks: 2 | test: => print store.test -------------------------------------------------------------------------------- /test/alfons/subalf.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/subalf.moon -------------------------------------------------------------------------------- /test/alfons/teal-table.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/teal-table.tl -------------------------------------------------------------------------------- /test/alfons/teal.tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/alfons/teal.tl -------------------------------------------------------------------------------- /test/graph-proof.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/graph-proof.moon -------------------------------------------------------------------------------- /test/lua.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/lua.moon -------------------------------------------------------------------------------- /test/predet.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/predet.moon -------------------------------------------------------------------------------- /test/runString.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/runString.moon -------------------------------------------------------------------------------- /test/store.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/store.moon -------------------------------------------------------------------------------- /test/teal.moon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daelvn/alfons/HEAD/test/teal.moon --------------------------------------------------------------------------------