An estimation language https://www.squiggle-language.com/
Go to file
dependabot[bot] 8c7340185c
⬆️ Bump @types/node from 18.8.0 to 18.8.3
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 18.8.0 to 18.8.3.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-10 15:34:12 +00:00
.github custom squiggle-components outputs; never cache coverage 2022-10-08 21:15:37 +04:00
examples Language.mdx changes and examples 2022-04-27 14:49:15 -04:00
nix added another file to un.gitignore 2022-09-12 11:53:29 +08:00
packages ⬆️ Bump @types/node from 18.8.0 to 18.8.3 2022-10-10 15:34:12 +00:00
.gitignore turborepo 2022-10-08 05:19:15 +04:00
.prettierignore added devShell build to ci-cachix.yml 2022-08-30 13:18:35 +08:00
.release-please-manifest.json hotfix: manual versions in .release-please-manifest.json 2022-09-09 15:28:29 +08:00
CHANGELOG.md changelog page 2022-10-09 15:27:47 +04:00
CONTRIBUTING.md replace netlify with vercel; update CONTRIBUTING.md 2022-10-07 02:09:30 +04:00
flake.lock rescript-association merged the gentype flake, so our flake inputs are updated accordingly 2022-08-30 19:10:59 +08:00
flake.nix rescript-association merged the gentype flake, so our flake inputs are updated accordingly 2022-08-30 19:10:59 +08:00
LICENSE Added license 2020-02-09 22:27:55 +00:00
nixos.sh Merge remote-tracking branch 'origin/develop' into nix-cached-ci 2022-08-30 09:21:36 +08:00
package.json more turbo; rewrite and simplify github CI 2022-10-08 17:28:43 +04:00
README.md vscode-ext depends on old 0.2.11 lang again for parsing; more turbo tuning 2022-10-08 18:16:54 +04:00
release-please-config.json rm bootstrap sha 2022-08-01 14:57:06 -04:00
turbo.json empty outputs of lint and test 2022-10-08 21:34:31 +04:00
yarn.lock ⬆️ Bump @types/node from 18.8.0 to 18.8.3 2022-10-10 15:34:12 +00:00

Squiggle

Packages check npm version - lang npm version - components License: MIT codecov

An estimation language.

Get started

Our deployments

Packages

This monorepo has several packages that can be used for various purposes. All the packages can be found in packages.

  • @quri/squiggle-lang in packages/squiggle-lang contains the core language, particularly an interface to parse squiggle expressions and return descriptions of distributions or results.
  • @quri/squiggle-components in packages/components contains React components that can be passed squiggle strings as props, and return a presentation of the result of the calculation.
  • packages/website is the main descriptive website for squiggle, it is hosted at squiggle-language.com.
  • packages/vscode-ext is the VS Code extension for writing estimation functions.
  • packages/cli is an experimental way of using imports in squiggle, which is also on npm.

Develop

For any project in the repo, begin by running yarn in the top level

yarn

Then use turbo to build the specific packages or the entire monorepo:

turbo run build

Or:

turbo run build --filter=@quri/squiggle-components

You can also run specific npm scripts for the package you're working on. See packages/*/README.md for the details.

Contributing

See CONTRIBUTING.md.