.gitignore, package.json, .prettierignore: #576

Value: [1e-7 to 1e-3]
This commit is contained in:
Quinn Dougherty 2022-05-23 07:05:42 -04:00
parent 4dd79eb018
commit ebcd228232
4 changed files with 306 additions and 753 deletions

View File

@ -21,3 +21,4 @@ dist
_coverage _coverage
coverage coverage
.nyc_output/ .nyc_output/
src/rescript/Reducer/Reducer_Peggy/Reducer_Peggy_GeneratedParser.js

View File

@ -4,4 +4,5 @@ lib
*.gen.tsx *.gen.tsx
.nyc_output/ .nyc_output/
coverage/ coverage/
.cache/ .cache/
Reducer_Peggy_GeneratedParser.js

View File

@ -4,9 +4,9 @@
"homepage": "https://squiggle-language.com", "homepage": "https://squiggle-language.com",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"peggy": "peggy --cache ", "peggy": "peggy --cache",
"build:peggy": "find . -type f -name *.peggy -exec yarn run peggy {} \\;", "build": "yarn build:peggy && yarn build:rescript && yarn build:typescript",
"build": "yarn build:rescript && yarn build:typescript", "build:peggy": "find . -type f -name *.peggy -exec yarn peggy {} \\;",
"build:rescript": "rescript build -with-deps", "build:rescript": "rescript build -with-deps",
"build:typescript": "tsc", "build:typescript": "tsc",
"bundle": "webpack", "bundle": "webpack",