├── .ci ├── build-platform.yml ├── checksum.js ├── cross-release.yml ├── esy-build-steps.yml ├── opam-build-steps.yml ├── pipelines-release.js ├── release-platform-setup.yml ├── release-postinstall.js └── utils │ ├── create-docs.yml │ ├── publish-build-cache.yml │ ├── restore-build-cache.yml │ ├── use-cache-esy.yml │ ├── use-cache-npm.yml │ ├── use-cache-yarn.yml │ ├── use-esy.yml │ └── use-node.yml ├── .gitignore ├── .npmignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── ORIGIN.md ├── PesyE2E.opam ├── README.html ├── azure-pipelines.yml ├── bin ├── Pesy.re └── dune ├── dune ├── dune-project ├── e2e-tests ├── .TestPesyConfigure.re.swp ├── .gitignore ├── Rimraf.re ├── Runner.re ├── Utils.re ├── dune └── pending-tests.re ├── errors ├── Errors.re └── dune ├── esy.lock ├── .gitattributes ├── .gitignore ├── index.json ├── opam │ ├── astring.0.8.5 │ │ └── opam │ ├── base-threads.base │ │ └── opam │ ├── base-unix.base │ │ └── opam │ ├── base.v0.17.0 │ │ └── opam │ ├── bos.0.2.1 │ │ └── opam │ ├── camlp-streams.5.0.1 │ │ └── opam │ ├── chrome-trace.3.15.3 │ │ └── opam │ ├── cmdliner.1.3.0 │ │ └── opam │ ├── cppo.1.6.9 │ │ └── opam │ ├── crunch.3.3.1 │ │ └── opam │ ├── csexp.1.5.2 │ │ └── opam │ ├── dune-build-info.3.15.3 │ │ └── opam │ ├── dune-configurator.3.15.3 │ │ └── opam │ ├── dune-rpc.3.15.3 │ │ └── opam │ ├── dune.3.15.3 │ │ └── opam │ ├── dyn.3.15.3 │ │ └── opam │ ├── fiber.3.7.0 │ │ └── opam │ ├── fix.20230505 │ │ └── opam │ ├── fmt.0.9.0 │ │ └── opam │ ├── fpath.0.7.3 │ │ └── opam │ ├── logs.0.7.0 │ │ └── opam │ ├── menhir.20231231 │ │ └── opam │ ├── menhirCST.20231231 │ │ └── opam │ ├── menhirLib.20231231 │ │ └── opam │ ├── menhirSdk.20231231 │ │ └── opam │ ├── merlin-extend.0.6.1 │ │ └── opam │ ├── merlin-lib.5.0-502 │ │ └── opam │ ├── num.1.5 │ │ └── opam │ ├── ocaml-compiler-libs.v0.17.0 │ │ └── opam │ ├── ocaml-lsp-server.1.18.0~5.2preview │ │ └── opam │ ├── ocaml_intrinsics_kernel.v0.17.0 │ │ └── opam │ ├── ocamlbuild.0.14.3+win │ │ └── opam │ ├── ocamlc-loc.3.15.3 │ │ └── opam │ ├── ocamlfind.1.9.6 │ │ └── opam │ ├── ocamlformat-rpc-lib.0.26.2 │ │ └── opam │ ├── odoc-parser.2.4.2 │ │ └── opam │ ├── odoc.2.4.2 │ │ └── opam │ ├── ordering.3.15.3 │ │ └── opam │ ├── parsexp.v0.17.0 │ │ └── opam │ ├── pp.1.2.0 │ │ └── opam │ ├── ppx_derivers.1.2.1 │ │ └── opam │ ├── ppx_yojson_conv_lib.v0.17.0 │ │ └── opam │ ├── ppxlib.0.32.1 │ │ └── opam │ ├── ptime.1.1.0 │ │ └── opam │ ├── re.1.11.0 │ │ └── opam │ ├── reason.3.11.0 │ │ └── opam │ ├── result.1.5 │ │ └── opam │ ├── rresult.0.7.0 │ │ └── opam │ ├── seq.base │ │ └── opam │ ├── sexplib.v0.17.0 │ │ └── opam │ ├── sexplib0.v0.17.0 │ │ └── opam │ ├── spawn.v0.15.1 │ │ └── opam │ ├── stdlib-shims.0.3.0 │ │ └── opam │ ├── stdune.3.15.3 │ │ └── opam │ ├── topkg.1.0.7 │ │ └── opam │ ├── tyxml.4.6.0 │ │ └── opam │ ├── uutf.1.0.3 │ │ └── opam │ ├── xdg.3.15.3 │ │ └── opam │ └── yojson.2.2.1 │ │ └── opam └── overrides │ ├── opam__s__dune_configurator_opam__c__3.15.3_opam_override │ ├── files │ │ └── darwin.patch │ └── package.json │ ├── opam__s__num_opam__c__1.5_opam_override │ └── package.json │ ├── opam__s__ocamlbuild_opam__c__0.14.3+win_opam_override │ ├── files │ │ └── winpatch.patch │ └── package.json │ ├── opam__s__ocamlfind_opam__c__1.9.6_opam_override │ ├── files │ │ └── findlib.patch │ └── package.json │ └── opam__s__ptime_opam__c__1.1.0_opam_override │ └── package.json ├── images ├── artifacts-explorer.png ├── calculating-sha1.png ├── download.png ├── logo.svg ├── release-job.png ├── release-option.png ├── screenshot.png ├── screenshot.svg ├── sha1-logs.png ├── tap-for-kebab.png └── top-right-corner.png ├── lib ├── Common.re ├── Common.rei ├── DuneFile.re ├── DuneFile.rei ├── DuneProject.re ├── DuneProject.rei ├── EsyCommand.re ├── Executable.re ├── Executable.rei ├── ImportsParser.re ├── Lexer.mll ├── Lib.re ├── Library.re ├── Library.rei ├── Mode.re ├── Parser.mly ├── PesyConf.re ├── PesyModule.re ├── Stanza.re ├── Stanza.rei ├── Stubs.re ├── Stubs.rei ├── Test.re ├── Test.rei └── dune ├── notes ├── benchmarking.md ├── checksum-verification.md ├── compiler-support.org ├── e2e.org └── release.org ├── npm-cli ├── .gitignore ├── .npmignore ├── .vscode │ └── tasks.json ├── README.md ├── __tests__ │ └── utils_test.re ├── bsconfig.json ├── esy.json ├── esy.lock │ ├── .gitattributes │ ├── .gitignore │ ├── index.json │ ├── opam │ │ ├── astring.0.8.5 │ │ │ └── opam │ │ ├── base-threads.base │ │ │ └── opam │ │ ├── base-unix.base │ │ │ └── opam │ │ ├── biniou.1.2.1 │ │ │ └── opam │ │ ├── cmdliner.1.0.4 │ │ │ └── opam │ │ ├── conf-m4.1 │ │ │ └── opam │ │ ├── cppo.1.6.7 │ │ │ └── opam │ │ ├── csexp.1.3.2 │ │ │ └── opam │ │ ├── dot-merlin-reader.3.4.2 │ │ │ └── opam │ │ ├── dune-build-info.2.7.1 │ │ │ └── opam │ │ ├── dune.2.7.1 │ │ │ └── opam │ │ ├── easy-format.1.3.2 │ │ │ └── opam │ │ ├── fix.20201120 │ │ │ └── opam │ │ ├── fpath.0.7.3 │ │ │ └── opam │ │ ├── menhir.20201216 │ │ │ └── opam │ │ ├── menhirLib.20201216 │ │ │ └── opam │ │ ├── menhirSdk.20201216 │ │ │ └── opam │ │ ├── merlin-extend.0.6 │ │ │ └── opam │ │ ├── merlin.3.4.2 │ │ │ └── opam │ │ ├── ocaml-secondary-compiler.4.08.1-1 │ │ │ ├── files │ │ │ │ ├── 0001-Don-t-build-manpages-for-stdlib-docs.patch │ │ │ │ ├── 0001-Fix-failure-to-install-tools-links.patch │ │ │ │ └── fix-gcc10.patch │ │ │ └── opam │ │ ├── ocamlbuild.0.14.0 │ │ │ └── opam │ │ ├── ocamlfind-secondary.1.8.1 │ │ │ ├── files │ │ │ │ ├── META.in │ │ │ │ └── ocaml-secondary-compiler.conf.in │ │ │ └── opam │ │ ├── ocamlfind.1.8.1 │ │ │ ├── files │ │ │ │ ├── ocaml-stub │ │ │ │ └── ocamlfind.install │ │ │ └── opam │ │ ├── odoc.1.5.2 │ │ │ └── opam │ │ ├── ppx_derivers.1.2.1 │ │ │ └── opam │ │ ├── ppx_yojson_conv_lib.v0.14.0 │ │ │ └── opam │ │ ├── re.1.9.0 │ │ │ └── opam │ │ ├── result.1.5 │ │ │ └── opam │ │ ├── seq.0.2.2 │ │ │ └── opam │ │ ├── stdlib-shims.0.1.0 │ │ │ └── opam │ │ ├── topkg.1.0.3 │ │ │ └── opam │ │ ├── tyxml.4.4.0 │ │ │ └── opam │ │ ├── uchar.0.0.2 │ │ │ └── opam │ │ ├── uutf.1.0.2 │ │ │ └── opam │ │ └── yojson.1.7.0 │ │ │ └── opam │ └── overrides │ │ ├── opam__s__conf_m4_opam__c__1_opam_override │ │ └── package.json │ │ ├── opam__s__dune_opam__c__2.7.1_opam_override │ │ ├── files │ │ │ └── build.sh │ │ └── package.json │ │ ├── opam__s__ocaml_secondary_compiler_opam__c__4.08.1_1_opam_override │ │ ├── files │ │ │ ├── clone-flexdll │ │ │ ├── configure-windows │ │ │ ├── esy-build │ │ │ └── esy-configure │ │ └── package.json │ │ ├── opam__s__ocamlbuild_opam__c__0.14.0_opam_override │ │ ├── files │ │ │ └── ocamlbuild-0.14.0.patch │ │ └── package.json │ │ ├── opam__s__ocamlfind_opam__c__1.8.1_opam_override │ │ ├── files │ │ │ └── findlib-1.8.1.patch │ │ └── package.json │ │ └── opam__s__ocamlfind_secondary_opam__c__1.8.1_opam_override │ │ ├── files │ │ ├── findlib-1.8.1.patch │ │ ├── gen-findlib-conf.sh │ │ └── gen-meta.sh │ │ └── package.json ├── package.json ├── pesy ├── pesy.bundle.js.minisig ├── pesy.js ├── rollup.config.js ├── scripts │ └── vendor-template.js ├── src │ ├── AzurePipelines.re │ ├── Bindings.re │ ├── Bootstrapper.re │ ├── Bootstrapper.rei │ ├── Cmd.re │ ├── DefaultTemplate.re │ ├── Dir.re │ ├── Dir.rei │ ├── Esy.re │ ├── Esy.rei │ ├── EsyLock.re │ ├── EsyLock.rei │ ├── EsyStatus.re │ ├── EsyStatus.rei │ ├── Path.re │ ├── Path.rei │ ├── Pesy.re │ ├── Pesy.rei │ ├── PesyConfig.re │ ├── PesyConfig.rei │ ├── Project.re │ ├── Project.rei │ ├── Readline.re │ ├── Result.re │ ├── ResultPromise.re │ ├── ResultPromise.rei │ ├── Spinner.re │ ├── Spinner.rei │ ├── Template.re │ ├── Template.rei │ ├── Utils.re │ └── Warmup.re ├── stubs │ ├── crypto.js │ ├── fs.js │ └── resolve.js ├── templates │ ├── .gitignore │ ├── .npmignore │ ├── ci │ │ ├── .ci │ │ │ ├── build-docker.yml │ │ │ ├── build-platform.yml │ │ │ ├── cross-release.yml │ │ │ ├── esy-build-steps.yml │ │ │ ├── opam-build-steps.yml │ │ │ ├── pipelines-release.js │ │ │ ├── release-platform-setup.yml │ │ │ ├── release-postinstall.js │ │ │ └── utils │ │ │ │ ├── create-docs.yml │ │ │ │ ├── publish-build-cache.yml │ │ │ │ ├── publish-sources.yml │ │ │ │ ├── restore-build-cache.yml │ │ │ │ ├── use-cache-esy.yml │ │ │ │ ├── use-cache-yarn.yml │ │ │ │ ├── use-esy.yml │ │ │ │ └── use-node.yml │ │ └── azure-pipelines-template.yml │ └── docker │ │ └── docker │ │ ├── DevImage.Dockerfile │ │ └── ProdImage.Dockerfile ├── v0.4.4 │ ├── LICENSE │ ├── ORIGIN.md │ ├── README.md │ ├── azure-ci-template │ │ ├── azure-pipelines.yml │ │ ├── esy-build-steps.template.yml │ │ ├── publish-build-cache.yml │ │ └── restore-build-cache.yml │ ├── esy-peasy │ ├── images │ │ └── screenshot.png │ ├── notes │ │ └── benchmarking.md │ ├── pesy │ ├── pesy-JSON.sh │ ├── pesy-README.template.md │ ├── pesy-create.sh │ ├── pesy-footer.template.sh │ ├── pesy-genBin.template.sh │ ├── pesy-genLib.template.sh │ ├── pesy-gitignore.template │ ├── pesy-header.sh │ ├── pesy-name-utils.sh │ └── pesy-package.template.json └── yarn.lock ├── package.json ├── pesy--esy-pesy.opam ├── scripts ├── bootstrap.sh ├── run.bat ├── run.sh ├── simulate-latest.js └── verdaccio.yaml ├── site ├── ORIGINS.md ├── Reload.js ├── animation.svg ├── fonts │ ├── CodingFont.css │ ├── LICENSE-Fira │ ├── LICENSE-Roboto │ └── WordFont.css ├── images │ ├── beach.jpg │ ├── beach2.jpg │ └── skateboard.jpg ├── index.dev.html ├── package-lock.json ├── package.json ├── theme-white │ ├── theme.js │ └── theme.styl.html └── vendor │ ├── highlight-styles │ └── mono-blue.css │ ├── highlight.pack.js │ ├── jquery.js │ ├── medium-zoom.js │ └── stylus.min.js ├── unit-tests └── runner │ ├── Lib.re │ ├── RunUnitTests.re │ ├── Utils.re │ └── dune └── utils ├── FieldTypes.re ├── JSON.re ├── JSON.rei ├── Utils.re └── dune /.ci/build-platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/build-platform.yml -------------------------------------------------------------------------------- /.ci/checksum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/checksum.js -------------------------------------------------------------------------------- /.ci/cross-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/cross-release.yml -------------------------------------------------------------------------------- /.ci/esy-build-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/esy-build-steps.yml -------------------------------------------------------------------------------- /.ci/opam-build-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/opam-build-steps.yml -------------------------------------------------------------------------------- /.ci/pipelines-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/pipelines-release.js -------------------------------------------------------------------------------- /.ci/release-platform-setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/release-platform-setup.yml -------------------------------------------------------------------------------- /.ci/release-postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/release-postinstall.js -------------------------------------------------------------------------------- /.ci/utils/create-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/utils/create-docs.yml -------------------------------------------------------------------------------- /.ci/utils/publish-build-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/utils/publish-build-cache.yml -------------------------------------------------------------------------------- /.ci/utils/restore-build-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/utils/restore-build-cache.yml -------------------------------------------------------------------------------- /.ci/utils/use-cache-esy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/utils/use-cache-esy.yml -------------------------------------------------------------------------------- /.ci/utils/use-cache-npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/utils/use-cache-npm.yml -------------------------------------------------------------------------------- /.ci/utils/use-cache-yarn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/utils/use-cache-yarn.yml -------------------------------------------------------------------------------- /.ci/utils/use-esy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/utils/use-esy.yml -------------------------------------------------------------------------------- /.ci/utils/use-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.ci/utils/use-node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/.npmignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/LICENSE -------------------------------------------------------------------------------- /ORIGIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/ORIGIN.md -------------------------------------------------------------------------------- /PesyE2E.opam: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/README.html -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /bin/Pesy.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/bin/Pesy.re -------------------------------------------------------------------------------- /bin/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/bin/dune -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/dune -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.11) 2 | (name pesy) 3 | -------------------------------------------------------------------------------- /e2e-tests/.TestPesyConfigure.re.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/e2e-tests/.TestPesyConfigure.re.swp -------------------------------------------------------------------------------- /e2e-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/e2e-tests/.gitignore -------------------------------------------------------------------------------- /e2e-tests/Rimraf.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/e2e-tests/Rimraf.re -------------------------------------------------------------------------------- /e2e-tests/Runner.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/e2e-tests/Runner.re -------------------------------------------------------------------------------- /e2e-tests/Utils.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/e2e-tests/Utils.re -------------------------------------------------------------------------------- /e2e-tests/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/e2e-tests/dune -------------------------------------------------------------------------------- /e2e-tests/pending-tests.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/e2e-tests/pending-tests.re -------------------------------------------------------------------------------- /errors/Errors.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/errors/Errors.re -------------------------------------------------------------------------------- /errors/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/errors/dune -------------------------------------------------------------------------------- /esy.lock/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/.gitattributes -------------------------------------------------------------------------------- /esy.lock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/.gitignore -------------------------------------------------------------------------------- /esy.lock/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/index.json -------------------------------------------------------------------------------- /esy.lock/opam/astring.0.8.5/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/astring.0.8.5/opam -------------------------------------------------------------------------------- /esy.lock/opam/base-threads.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/base-threads.base/opam -------------------------------------------------------------------------------- /esy.lock/opam/base-unix.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/base-unix.base/opam -------------------------------------------------------------------------------- /esy.lock/opam/base.v0.17.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/base.v0.17.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/bos.0.2.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/bos.0.2.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/camlp-streams.5.0.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/camlp-streams.5.0.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/chrome-trace.3.15.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/chrome-trace.3.15.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/cmdliner.1.3.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/cmdliner.1.3.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/cppo.1.6.9/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/cppo.1.6.9/opam -------------------------------------------------------------------------------- /esy.lock/opam/crunch.3.3.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/crunch.3.3.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/csexp.1.5.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/csexp.1.5.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/dune-build-info.3.15.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/dune-build-info.3.15.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/dune-configurator.3.15.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/dune-configurator.3.15.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/dune-rpc.3.15.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/dune-rpc.3.15.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/dune.3.15.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/dune.3.15.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/dyn.3.15.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/dyn.3.15.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/fiber.3.7.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/fiber.3.7.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/fix.20230505/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/fix.20230505/opam -------------------------------------------------------------------------------- /esy.lock/opam/fmt.0.9.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/fmt.0.9.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/fpath.0.7.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/fpath.0.7.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/logs.0.7.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/logs.0.7.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/menhir.20231231/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/menhir.20231231/opam -------------------------------------------------------------------------------- /esy.lock/opam/menhirCST.20231231/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/menhirCST.20231231/opam -------------------------------------------------------------------------------- /esy.lock/opam/menhirLib.20231231/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/menhirLib.20231231/opam -------------------------------------------------------------------------------- /esy.lock/opam/menhirSdk.20231231/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/menhirSdk.20231231/opam -------------------------------------------------------------------------------- /esy.lock/opam/merlin-extend.0.6.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/merlin-extend.0.6.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/merlin-lib.5.0-502/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/merlin-lib.5.0-502/opam -------------------------------------------------------------------------------- /esy.lock/opam/num.1.5/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/num.1.5/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocaml-compiler-libs.v0.17.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/ocaml-compiler-libs.v0.17.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocaml-lsp-server.1.18.0~5.2preview/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/ocaml-lsp-server.1.18.0~5.2preview/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocaml_intrinsics_kernel.v0.17.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/ocaml_intrinsics_kernel.v0.17.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocamlbuild.0.14.3+win/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/ocamlbuild.0.14.3+win/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocamlc-loc.3.15.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/ocamlc-loc.3.15.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocamlfind.1.9.6/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/ocamlfind.1.9.6/opam -------------------------------------------------------------------------------- /esy.lock/opam/ocamlformat-rpc-lib.0.26.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/ocamlformat-rpc-lib.0.26.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/odoc-parser.2.4.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/odoc-parser.2.4.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/odoc.2.4.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/odoc.2.4.2/opam -------------------------------------------------------------------------------- /esy.lock/opam/ordering.3.15.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/ordering.3.15.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/parsexp.v0.17.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/parsexp.v0.17.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/pp.1.2.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/pp.1.2.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/ppx_derivers.1.2.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/ppx_derivers.1.2.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/ppx_yojson_conv_lib.v0.17.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/ppx_yojson_conv_lib.v0.17.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/ppxlib.0.32.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/ppxlib.0.32.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/ptime.1.1.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/ptime.1.1.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/re.1.11.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/re.1.11.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/reason.3.11.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/reason.3.11.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/result.1.5/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/result.1.5/opam -------------------------------------------------------------------------------- /esy.lock/opam/rresult.0.7.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/rresult.0.7.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/seq.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/seq.base/opam -------------------------------------------------------------------------------- /esy.lock/opam/sexplib.v0.17.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/sexplib.v0.17.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/sexplib0.v0.17.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/sexplib0.v0.17.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/spawn.v0.15.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/spawn.v0.15.1/opam -------------------------------------------------------------------------------- /esy.lock/opam/stdlib-shims.0.3.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/stdlib-shims.0.3.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/stdune.3.15.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/stdune.3.15.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/topkg.1.0.7/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/topkg.1.0.7/opam -------------------------------------------------------------------------------- /esy.lock/opam/tyxml.4.6.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/tyxml.4.6.0/opam -------------------------------------------------------------------------------- /esy.lock/opam/uutf.1.0.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/uutf.1.0.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/xdg.3.15.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/xdg.3.15.3/opam -------------------------------------------------------------------------------- /esy.lock/opam/yojson.2.2.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/opam/yojson.2.2.1/opam -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__dune_configurator_opam__c__3.15.3_opam_override/files/darwin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/overrides/opam__s__dune_configurator_opam__c__3.15.3_opam_override/files/darwin.patch -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__dune_configurator_opam__c__3.15.3_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/overrides/opam__s__dune_configurator_opam__c__3.15.3_opam_override/package.json -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__num_opam__c__1.5_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/overrides/opam__s__num_opam__c__1.5_opam_override/package.json -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.3+win_opam_override/files/winpatch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.3+win_opam_override/files/winpatch.patch -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.3+win_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.3+win_opam_override/package.json -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlfind_opam__c__1.9.6_opam_override/files/findlib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/overrides/opam__s__ocamlfind_opam__c__1.9.6_opam_override/files/findlib.patch -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ocamlfind_opam__c__1.9.6_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/overrides/opam__s__ocamlfind_opam__c__1.9.6_opam_override/package.json -------------------------------------------------------------------------------- /esy.lock/overrides/opam__s__ptime_opam__c__1.1.0_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/esy.lock/overrides/opam__s__ptime_opam__c__1.1.0_opam_override/package.json -------------------------------------------------------------------------------- /images/artifacts-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/images/artifacts-explorer.png -------------------------------------------------------------------------------- /images/calculating-sha1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/images/calculating-sha1.png -------------------------------------------------------------------------------- /images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/images/download.png -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/images/logo.svg -------------------------------------------------------------------------------- /images/release-job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/images/release-job.png -------------------------------------------------------------------------------- /images/release-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/images/release-option.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/screenshot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/images/screenshot.svg -------------------------------------------------------------------------------- /images/sha1-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/images/sha1-logs.png -------------------------------------------------------------------------------- /images/tap-for-kebab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/images/tap-for-kebab.png -------------------------------------------------------------------------------- /images/top-right-corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/images/top-right-corner.png -------------------------------------------------------------------------------- /lib/Common.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Common.re -------------------------------------------------------------------------------- /lib/Common.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Common.rei -------------------------------------------------------------------------------- /lib/DuneFile.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/DuneFile.re -------------------------------------------------------------------------------- /lib/DuneFile.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/DuneFile.rei -------------------------------------------------------------------------------- /lib/DuneProject.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/DuneProject.re -------------------------------------------------------------------------------- /lib/DuneProject.rei: -------------------------------------------------------------------------------- 1 | let findLangVersion: list(Stanza.t) => string; -------------------------------------------------------------------------------- /lib/EsyCommand.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/EsyCommand.re -------------------------------------------------------------------------------- /lib/Executable.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Executable.re -------------------------------------------------------------------------------- /lib/Executable.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Executable.rei -------------------------------------------------------------------------------- /lib/ImportsParser.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/ImportsParser.re -------------------------------------------------------------------------------- /lib/Lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Lexer.mll -------------------------------------------------------------------------------- /lib/Lib.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Lib.re -------------------------------------------------------------------------------- /lib/Library.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Library.re -------------------------------------------------------------------------------- /lib/Library.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Library.rei -------------------------------------------------------------------------------- /lib/Mode.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Mode.re -------------------------------------------------------------------------------- /lib/Parser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Parser.mly -------------------------------------------------------------------------------- /lib/PesyConf.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/PesyConf.re -------------------------------------------------------------------------------- /lib/PesyModule.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/PesyModule.re -------------------------------------------------------------------------------- /lib/Stanza.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Stanza.re -------------------------------------------------------------------------------- /lib/Stanza.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Stanza.rei -------------------------------------------------------------------------------- /lib/Stubs.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Stubs.re -------------------------------------------------------------------------------- /lib/Stubs.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Stubs.rei -------------------------------------------------------------------------------- /lib/Test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Test.re -------------------------------------------------------------------------------- /lib/Test.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/Test.rei -------------------------------------------------------------------------------- /lib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/lib/dune -------------------------------------------------------------------------------- /notes/benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/notes/benchmarking.md -------------------------------------------------------------------------------- /notes/checksum-verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/notes/checksum-verification.md -------------------------------------------------------------------------------- /notes/compiler-support.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/notes/compiler-support.org -------------------------------------------------------------------------------- /notes/e2e.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/notes/e2e.org -------------------------------------------------------------------------------- /notes/release.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/notes/release.org -------------------------------------------------------------------------------- /npm-cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/.gitignore -------------------------------------------------------------------------------- /npm-cli/.npmignore: -------------------------------------------------------------------------------- 1 | src/* -------------------------------------------------------------------------------- /npm-cli/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/.vscode/tasks.json -------------------------------------------------------------------------------- /npm-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/README.md -------------------------------------------------------------------------------- /npm-cli/__tests__/utils_test.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/__tests__/utils_test.re -------------------------------------------------------------------------------- /npm-cli/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/bsconfig.json -------------------------------------------------------------------------------- /npm-cli/esy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.json -------------------------------------------------------------------------------- /npm-cli/esy.lock/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/.gitattributes -------------------------------------------------------------------------------- /npm-cli/esy.lock/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/.gitignore -------------------------------------------------------------------------------- /npm-cli/esy.lock/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/index.json -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/astring.0.8.5/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/astring.0.8.5/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/base-threads.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/base-threads.base/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/base-unix.base/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/base-unix.base/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/biniou.1.2.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/biniou.1.2.1/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/cmdliner.1.0.4/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/cmdliner.1.0.4/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/conf-m4.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/conf-m4.1/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/cppo.1.6.7/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/cppo.1.6.7/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/csexp.1.3.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/csexp.1.3.2/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/dot-merlin-reader.3.4.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/dot-merlin-reader.3.4.2/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/dune-build-info.2.7.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/dune-build-info.2.7.1/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/dune.2.7.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/dune.2.7.1/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/easy-format.1.3.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/easy-format.1.3.2/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/fix.20201120/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/fix.20201120/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/fpath.0.7.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/fpath.0.7.3/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/menhir.20201216/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/menhir.20201216/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/menhirLib.20201216/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/menhirLib.20201216/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/menhirSdk.20201216/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/menhirSdk.20201216/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/merlin-extend.0.6/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/merlin-extend.0.6/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/merlin.3.4.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/merlin.3.4.2/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/ocaml-secondary-compiler.4.08.1-1/files/0001-Don-t-build-manpages-for-stdlib-docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/ocaml-secondary-compiler.4.08.1-1/files/0001-Don-t-build-manpages-for-stdlib-docs.patch -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/ocaml-secondary-compiler.4.08.1-1/files/0001-Fix-failure-to-install-tools-links.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/ocaml-secondary-compiler.4.08.1-1/files/0001-Fix-failure-to-install-tools-links.patch -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/ocaml-secondary-compiler.4.08.1-1/files/fix-gcc10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/ocaml-secondary-compiler.4.08.1-1/files/fix-gcc10.patch -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/ocaml-secondary-compiler.4.08.1-1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/ocaml-secondary-compiler.4.08.1-1/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/ocamlbuild.0.14.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/ocamlbuild.0.14.0/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/ocamlfind-secondary.1.8.1/files/META.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/ocamlfind-secondary.1.8.1/files/META.in -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/ocamlfind-secondary.1.8.1/files/ocaml-secondary-compiler.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/ocamlfind-secondary.1.8.1/files/ocaml-secondary-compiler.conf.in -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/ocamlfind-secondary.1.8.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/ocamlfind-secondary.1.8.1/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/ocamlfind.1.8.1/files/ocaml-stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/ocamlfind.1.8.1/files/ocaml-stub -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/ocamlfind.1.8.1/files/ocamlfind.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/ocamlfind.1.8.1/files/ocamlfind.install -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/ocamlfind.1.8.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/ocamlfind.1.8.1/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/odoc.1.5.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/odoc.1.5.2/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/ppx_derivers.1.2.1/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/ppx_derivers.1.2.1/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/ppx_yojson_conv_lib.v0.14.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/ppx_yojson_conv_lib.v0.14.0/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/re.1.9.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/re.1.9.0/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/result.1.5/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/result.1.5/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/seq.0.2.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/seq.0.2.2/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/stdlib-shims.0.1.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/stdlib-shims.0.1.0/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/topkg.1.0.3/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/topkg.1.0.3/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/tyxml.4.4.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/tyxml.4.4.0/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/uchar.0.0.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/uchar.0.0.2/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/uutf.1.0.2/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/uutf.1.0.2/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/opam/yojson.1.7.0/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/opam/yojson.1.7.0/opam -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__conf_m4_opam__c__1_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__conf_m4_opam__c__1_opam_override/package.json -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__dune_opam__c__2.7.1_opam_override/files/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__dune_opam__c__2.7.1_opam_override/files/build.sh -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__dune_opam__c__2.7.1_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__dune_opam__c__2.7.1_opam_override/package.json -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__ocaml_secondary_compiler_opam__c__4.08.1_1_opam_override/files/clone-flexdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__ocaml_secondary_compiler_opam__c__4.08.1_1_opam_override/files/clone-flexdll -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__ocaml_secondary_compiler_opam__c__4.08.1_1_opam_override/files/configure-windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__ocaml_secondary_compiler_opam__c__4.08.1_1_opam_override/files/configure-windows -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__ocaml_secondary_compiler_opam__c__4.08.1_1_opam_override/files/esy-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__ocaml_secondary_compiler_opam__c__4.08.1_1_opam_override/files/esy-build -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__ocaml_secondary_compiler_opam__c__4.08.1_1_opam_override/files/esy-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__ocaml_secondary_compiler_opam__c__4.08.1_1_opam_override/files/esy-configure -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__ocaml_secondary_compiler_opam__c__4.08.1_1_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__ocaml_secondary_compiler_opam__c__4.08.1_1_opam_override/package.json -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.0_opam_override/files/ocamlbuild-0.14.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.0_opam_override/files/ocamlbuild-0.14.0.patch -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.0_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__ocamlbuild_opam__c__0.14.0_opam_override/package.json -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__ocamlfind_opam__c__1.8.1_opam_override/files/findlib-1.8.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__ocamlfind_opam__c__1.8.1_opam_override/files/findlib-1.8.1.patch -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__ocamlfind_opam__c__1.8.1_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__ocamlfind_opam__c__1.8.1_opam_override/package.json -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__ocamlfind_secondary_opam__c__1.8.1_opam_override/files/findlib-1.8.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__ocamlfind_secondary_opam__c__1.8.1_opam_override/files/findlib-1.8.1.patch -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__ocamlfind_secondary_opam__c__1.8.1_opam_override/files/gen-findlib-conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__ocamlfind_secondary_opam__c__1.8.1_opam_override/files/gen-findlib-conf.sh -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__ocamlfind_secondary_opam__c__1.8.1_opam_override/files/gen-meta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__ocamlfind_secondary_opam__c__1.8.1_opam_override/files/gen-meta.sh -------------------------------------------------------------------------------- /npm-cli/esy.lock/overrides/opam__s__ocamlfind_secondary_opam__c__1.8.1_opam_override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/esy.lock/overrides/opam__s__ocamlfind_secondary_opam__c__1.8.1_opam_override/package.json -------------------------------------------------------------------------------- /npm-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/package.json -------------------------------------------------------------------------------- /npm-cli/pesy: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env node 2 | 3 | require('./pesy.bundle.js'); 4 | -------------------------------------------------------------------------------- /npm-cli/pesy.bundle.js.minisig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/pesy.bundle.js.minisig -------------------------------------------------------------------------------- /npm-cli/pesy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/pesy.js -------------------------------------------------------------------------------- /npm-cli/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/rollup.config.js -------------------------------------------------------------------------------- /npm-cli/scripts/vendor-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/scripts/vendor-template.js -------------------------------------------------------------------------------- /npm-cli/src/AzurePipelines.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/AzurePipelines.re -------------------------------------------------------------------------------- /npm-cli/src/Bindings.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Bindings.re -------------------------------------------------------------------------------- /npm-cli/src/Bootstrapper.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Bootstrapper.re -------------------------------------------------------------------------------- /npm-cli/src/Bootstrapper.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Bootstrapper.rei -------------------------------------------------------------------------------- /npm-cli/src/Cmd.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Cmd.re -------------------------------------------------------------------------------- /npm-cli/src/DefaultTemplate.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/DefaultTemplate.re -------------------------------------------------------------------------------- /npm-cli/src/Dir.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Dir.re -------------------------------------------------------------------------------- /npm-cli/src/Dir.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Dir.rei -------------------------------------------------------------------------------- /npm-cli/src/Esy.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Esy.re -------------------------------------------------------------------------------- /npm-cli/src/Esy.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Esy.rei -------------------------------------------------------------------------------- /npm-cli/src/EsyLock.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/EsyLock.re -------------------------------------------------------------------------------- /npm-cli/src/EsyLock.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/EsyLock.rei -------------------------------------------------------------------------------- /npm-cli/src/EsyStatus.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/EsyStatus.re -------------------------------------------------------------------------------- /npm-cli/src/EsyStatus.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/EsyStatus.rei -------------------------------------------------------------------------------- /npm-cli/src/Path.re: -------------------------------------------------------------------------------- 1 | type t = string; 2 | -------------------------------------------------------------------------------- /npm-cli/src/Path.rei: -------------------------------------------------------------------------------- 1 | type t = string; 2 | -------------------------------------------------------------------------------- /npm-cli/src/Pesy.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Pesy.re -------------------------------------------------------------------------------- /npm-cli/src/Pesy.rei: -------------------------------------------------------------------------------- 1 | let main: (. array(string)) => Js.Promise.t(int); 2 | -------------------------------------------------------------------------------- /npm-cli/src/PesyConfig.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/PesyConfig.re -------------------------------------------------------------------------------- /npm-cli/src/PesyConfig.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/PesyConfig.rei -------------------------------------------------------------------------------- /npm-cli/src/Project.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Project.re -------------------------------------------------------------------------------- /npm-cli/src/Project.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Project.rei -------------------------------------------------------------------------------- /npm-cli/src/Readline.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Readline.re -------------------------------------------------------------------------------- /npm-cli/src/Result.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Result.re -------------------------------------------------------------------------------- /npm-cli/src/ResultPromise.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/ResultPromise.re -------------------------------------------------------------------------------- /npm-cli/src/ResultPromise.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/ResultPromise.rei -------------------------------------------------------------------------------- /npm-cli/src/Spinner.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Spinner.re -------------------------------------------------------------------------------- /npm-cli/src/Spinner.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Spinner.rei -------------------------------------------------------------------------------- /npm-cli/src/Template.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Template.re -------------------------------------------------------------------------------- /npm-cli/src/Template.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Template.rei -------------------------------------------------------------------------------- /npm-cli/src/Utils.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Utils.re -------------------------------------------------------------------------------- /npm-cli/src/Warmup.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/src/Warmup.re -------------------------------------------------------------------------------- /npm-cli/stubs/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/stubs/crypto.js -------------------------------------------------------------------------------- /npm-cli/stubs/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/stubs/fs.js -------------------------------------------------------------------------------- /npm-cli/stubs/resolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/stubs/resolve.js -------------------------------------------------------------------------------- /npm-cli/templates/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/.gitignore -------------------------------------------------------------------------------- /npm-cli/templates/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/build-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/build-docker.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/build-platform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/build-platform.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/cross-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/cross-release.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/esy-build-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/esy-build-steps.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/opam-build-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/opam-build-steps.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/pipelines-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/pipelines-release.js -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/release-platform-setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/release-platform-setup.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/release-postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/release-postinstall.js -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/utils/create-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/utils/create-docs.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/utils/publish-build-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/utils/publish-build-cache.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/utils/publish-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/utils/publish-sources.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/utils/restore-build-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/utils/restore-build-cache.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/utils/use-cache-esy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/utils/use-cache-esy.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/utils/use-cache-yarn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/utils/use-cache-yarn.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/utils/use-esy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/utils/use-esy.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/.ci/utils/use-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/.ci/utils/use-node.yml -------------------------------------------------------------------------------- /npm-cli/templates/ci/azure-pipelines-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/ci/azure-pipelines-template.yml -------------------------------------------------------------------------------- /npm-cli/templates/docker/docker/DevImage.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/docker/docker/DevImage.Dockerfile -------------------------------------------------------------------------------- /npm-cli/templates/docker/docker/ProdImage.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/templates/docker/docker/ProdImage.Dockerfile -------------------------------------------------------------------------------- /npm-cli/v0.4.4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/LICENSE -------------------------------------------------------------------------------- /npm-cli/v0.4.4/ORIGIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/ORIGIN.md -------------------------------------------------------------------------------- /npm-cli/v0.4.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/README.md -------------------------------------------------------------------------------- /npm-cli/v0.4.4/azure-ci-template/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/azure-ci-template/azure-pipelines.yml -------------------------------------------------------------------------------- /npm-cli/v0.4.4/azure-ci-template/esy-build-steps.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/azure-ci-template/esy-build-steps.template.yml -------------------------------------------------------------------------------- /npm-cli/v0.4.4/azure-ci-template/publish-build-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/azure-ci-template/publish-build-cache.yml -------------------------------------------------------------------------------- /npm-cli/v0.4.4/azure-ci-template/restore-build-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/azure-ci-template/restore-build-cache.yml -------------------------------------------------------------------------------- /npm-cli/v0.4.4/esy-peasy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/esy-peasy -------------------------------------------------------------------------------- /npm-cli/v0.4.4/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/images/screenshot.png -------------------------------------------------------------------------------- /npm-cli/v0.4.4/notes/benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/notes/benchmarking.md -------------------------------------------------------------------------------- /npm-cli/v0.4.4/pesy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/pesy -------------------------------------------------------------------------------- /npm-cli/v0.4.4/pesy-JSON.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/pesy-JSON.sh -------------------------------------------------------------------------------- /npm-cli/v0.4.4/pesy-README.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/pesy-README.template.md -------------------------------------------------------------------------------- /npm-cli/v0.4.4/pesy-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/pesy-create.sh -------------------------------------------------------------------------------- /npm-cli/v0.4.4/pesy-footer.template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/pesy-footer.template.sh -------------------------------------------------------------------------------- /npm-cli/v0.4.4/pesy-genBin.template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/pesy-genBin.template.sh -------------------------------------------------------------------------------- /npm-cli/v0.4.4/pesy-genLib.template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/pesy-genLib.template.sh -------------------------------------------------------------------------------- /npm-cli/v0.4.4/pesy-gitignore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/pesy-gitignore.template -------------------------------------------------------------------------------- /npm-cli/v0.4.4/pesy-header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/pesy-header.sh -------------------------------------------------------------------------------- /npm-cli/v0.4.4/pesy-name-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/pesy-name-utils.sh -------------------------------------------------------------------------------- /npm-cli/v0.4.4/pesy-package.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/v0.4.4/pesy-package.template.json -------------------------------------------------------------------------------- /npm-cli/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/npm-cli/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/package.json -------------------------------------------------------------------------------- /pesy--esy-pesy.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/pesy--esy-pesy.opam -------------------------------------------------------------------------------- /scripts/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/scripts/bootstrap.sh -------------------------------------------------------------------------------- /scripts/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/scripts/run.bat -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /scripts/simulate-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/scripts/simulate-latest.js -------------------------------------------------------------------------------- /scripts/verdaccio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/scripts/verdaccio.yaml -------------------------------------------------------------------------------- /site/ORIGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/ORIGINS.md -------------------------------------------------------------------------------- /site/Reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/Reload.js -------------------------------------------------------------------------------- /site/animation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/animation.svg -------------------------------------------------------------------------------- /site/fonts/CodingFont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/fonts/CodingFont.css -------------------------------------------------------------------------------- /site/fonts/LICENSE-Fira: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/fonts/LICENSE-Fira -------------------------------------------------------------------------------- /site/fonts/LICENSE-Roboto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/fonts/LICENSE-Roboto -------------------------------------------------------------------------------- /site/fonts/WordFont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/fonts/WordFont.css -------------------------------------------------------------------------------- /site/images/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/images/beach.jpg -------------------------------------------------------------------------------- /site/images/beach2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/images/beach2.jpg -------------------------------------------------------------------------------- /site/images/skateboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/images/skateboard.jpg -------------------------------------------------------------------------------- /site/index.dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/index.dev.html -------------------------------------------------------------------------------- /site/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/package-lock.json -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/package.json -------------------------------------------------------------------------------- /site/theme-white/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/theme-white/theme.js -------------------------------------------------------------------------------- /site/theme-white/theme.styl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/theme-white/theme.styl.html -------------------------------------------------------------------------------- /site/vendor/highlight-styles/mono-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/vendor/highlight-styles/mono-blue.css -------------------------------------------------------------------------------- /site/vendor/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/vendor/highlight.pack.js -------------------------------------------------------------------------------- /site/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/vendor/jquery.js -------------------------------------------------------------------------------- /site/vendor/medium-zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/vendor/medium-zoom.js -------------------------------------------------------------------------------- /site/vendor/stylus.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/site/vendor/stylus.min.js -------------------------------------------------------------------------------- /unit-tests/runner/Lib.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/unit-tests/runner/Lib.re -------------------------------------------------------------------------------- /unit-tests/runner/RunUnitTests.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/unit-tests/runner/RunUnitTests.re -------------------------------------------------------------------------------- /unit-tests/runner/Utils.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/unit-tests/runner/Utils.re -------------------------------------------------------------------------------- /unit-tests/runner/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/unit-tests/runner/dune -------------------------------------------------------------------------------- /utils/FieldTypes.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/utils/FieldTypes.re -------------------------------------------------------------------------------- /utils/JSON.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/utils/JSON.re -------------------------------------------------------------------------------- /utils/JSON.rei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/utils/JSON.rei -------------------------------------------------------------------------------- /utils/Utils.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/utils/Utils.re -------------------------------------------------------------------------------- /utils/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esy/pesy/HEAD/utils/dune --------------------------------------------------------------------------------