├── .gitignore ├── LICENSE ├── README.md ├── demo.nu ├── dotnu-capture.nu ├── dotnu ├── commands.nu └── mod.nu ├── nupm.nuon ├── tests ├── assets │ ├── b │ │ ├── example-mod1.nu │ │ └── example-mod2.nu │ ├── c │ │ └── hello-no-output.nu │ ├── dotnu-capture-clean.nu │ ├── dotnu-capture-updated.nu │ ├── dotnu-capture.nu │ ├── embed-test.nu │ ├── module-say │ │ ├── nupm.nuon │ │ └── say │ │ │ ├── ask.nu │ │ │ ├── hello.nu │ │ │ ├── mod.nu │ │ │ └── test-hi.nu │ ├── parsing-pipe-in-docstring.nu │ ├── set-x-demo.nu │ └── set-x-demo_setx.nu ├── nupm │ ├── LICENSE │ ├── test.nu │ └── utils │ │ ├── completions.nu │ │ ├── dirs.nu │ │ ├── log.nu │ │ ├── misc.nu │ │ ├── package.nu │ │ ├── registry.nu │ │ └── version.nu └── output-yaml │ ├── dependencies --keep_bulitins.yaml │ ├── dependencies.yaml │ ├── parse-docstrings-ask.yaml │ ├── parse-docstrings-embed-test.yaml │ ├── parse-docstrings-example-mod1.yaml │ ├── parse-docstrings-example-mod2.yaml │ ├── parse-docstrings-hello-no-output.yaml │ ├── parse-docstrings-hello.yaml │ ├── parse-docstrings-mod.yaml │ ├── parse-docstrings-parsing-pipe-in-docstring.yaml │ ├── parse-docstrings-set-x-demo.yaml │ └── parse-docstrings-test-hi.yaml └── tools.nu /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/README.md -------------------------------------------------------------------------------- /demo.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/demo.nu -------------------------------------------------------------------------------- /dotnu-capture.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/dotnu-capture.nu -------------------------------------------------------------------------------- /dotnu/commands.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/dotnu/commands.nu -------------------------------------------------------------------------------- /dotnu/mod.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/dotnu/mod.nu -------------------------------------------------------------------------------- /nupm.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/nupm.nuon -------------------------------------------------------------------------------- /tests/assets/b/example-mod1.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/b/example-mod1.nu -------------------------------------------------------------------------------- /tests/assets/b/example-mod2.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/b/example-mod2.nu -------------------------------------------------------------------------------- /tests/assets/c/hello-no-output.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/c/hello-no-output.nu -------------------------------------------------------------------------------- /tests/assets/dotnu-capture-clean.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/dotnu-capture-clean.nu -------------------------------------------------------------------------------- /tests/assets/dotnu-capture-updated.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/dotnu-capture-updated.nu -------------------------------------------------------------------------------- /tests/assets/dotnu-capture.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/dotnu-capture.nu -------------------------------------------------------------------------------- /tests/assets/embed-test.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/embed-test.nu -------------------------------------------------------------------------------- /tests/assets/module-say/nupm.nuon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/module-say/nupm.nuon -------------------------------------------------------------------------------- /tests/assets/module-say/say/ask.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/module-say/say/ask.nu -------------------------------------------------------------------------------- /tests/assets/module-say/say/hello.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/module-say/say/hello.nu -------------------------------------------------------------------------------- /tests/assets/module-say/say/mod.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/module-say/say/mod.nu -------------------------------------------------------------------------------- /tests/assets/module-say/say/test-hi.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/module-say/say/test-hi.nu -------------------------------------------------------------------------------- /tests/assets/parsing-pipe-in-docstring.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/parsing-pipe-in-docstring.nu -------------------------------------------------------------------------------- /tests/assets/set-x-demo.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/set-x-demo.nu -------------------------------------------------------------------------------- /tests/assets/set-x-demo_setx.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/assets/set-x-demo_setx.nu -------------------------------------------------------------------------------- /tests/nupm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/nupm/LICENSE -------------------------------------------------------------------------------- /tests/nupm/test.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/nupm/test.nu -------------------------------------------------------------------------------- /tests/nupm/utils/completions.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/nupm/utils/completions.nu -------------------------------------------------------------------------------- /tests/nupm/utils/dirs.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/nupm/utils/dirs.nu -------------------------------------------------------------------------------- /tests/nupm/utils/log.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/nupm/utils/log.nu -------------------------------------------------------------------------------- /tests/nupm/utils/misc.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/nupm/utils/misc.nu -------------------------------------------------------------------------------- /tests/nupm/utils/package.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/nupm/utils/package.nu -------------------------------------------------------------------------------- /tests/nupm/utils/registry.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/nupm/utils/registry.nu -------------------------------------------------------------------------------- /tests/nupm/utils/version.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/nupm/utils/version.nu -------------------------------------------------------------------------------- /tests/output-yaml/dependencies --keep_bulitins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/output-yaml/dependencies --keep_bulitins.yaml -------------------------------------------------------------------------------- /tests/output-yaml/dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/output-yaml/dependencies.yaml -------------------------------------------------------------------------------- /tests/output-yaml/parse-docstrings-ask.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/output-yaml/parse-docstrings-ask.yaml -------------------------------------------------------------------------------- /tests/output-yaml/parse-docstrings-embed-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/output-yaml/parse-docstrings-embed-test.yaml -------------------------------------------------------------------------------- /tests/output-yaml/parse-docstrings-example-mod1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/output-yaml/parse-docstrings-example-mod1.yaml -------------------------------------------------------------------------------- /tests/output-yaml/parse-docstrings-example-mod2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/output-yaml/parse-docstrings-example-mod2.yaml -------------------------------------------------------------------------------- /tests/output-yaml/parse-docstrings-hello-no-output.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/output-yaml/parse-docstrings-hello-no-output.yaml -------------------------------------------------------------------------------- /tests/output-yaml/parse-docstrings-hello.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/output-yaml/parse-docstrings-hello.yaml -------------------------------------------------------------------------------- /tests/output-yaml/parse-docstrings-mod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/output-yaml/parse-docstrings-mod.yaml -------------------------------------------------------------------------------- /tests/output-yaml/parse-docstrings-parsing-pipe-in-docstring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/output-yaml/parse-docstrings-parsing-pipe-in-docstring.yaml -------------------------------------------------------------------------------- /tests/output-yaml/parse-docstrings-set-x-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/output-yaml/parse-docstrings-set-x-demo.yaml -------------------------------------------------------------------------------- /tests/output-yaml/parse-docstrings-test-hi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tests/output-yaml/parse-docstrings-test-hi.yaml -------------------------------------------------------------------------------- /tools.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell-prophet/dotnu/HEAD/tools.nu --------------------------------------------------------------------------------