Added dist

This commit is contained in:
Ozzie Gooen 2022-01-31 14:38:03 -05:00
parent 867d99210d
commit b2a2cda8ef
5 changed files with 1762 additions and 11 deletions

1
.gitignore vendored
View File

@ -5,7 +5,6 @@ npm-debug.log
/node_modules/ /node_modules/
.cache .cache
.cache/* .cache/*
dist
lib/* lib/*
*.cache *.cache
build build

1368
dist/index.js vendored Normal file

File diff suppressed because one or more lines are too long

393
dist/report.html vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -1,11 +1,10 @@
{ {
"name": "squiggle-experimental", "name": "squiggle-experimental",
"version": "0.1.4", "version": "0.1.5",
"homepage": "https://foretold-app.github.io/estiband/", "homepage": "https://foretold-app.github.io/estiband/",
"private": false, "private": false,
"scripts": { "scripts": {
"build": "rescript build", "build": "rescript build",
"build:style": "tailwind build",
"parcel": "parcel build ./src/js/index.js --no-source-maps --no-autoinstall", "parcel": "parcel build ./src/js/index.js --no-source-maps --no-autoinstall",
"start": "rescript build -w", "start": "rescript build -w",
"clean": "rescript clean", "clean": "rescript clean",

View File

@ -1,8 +0,0 @@
//postcss.config.js
const tailwindcss = require('tailwindcss');
module.exports = {
plugins: [
tailwindcss('./tailwind.js'),
require('autoprefixer'),
],
};