Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
* text=auto eol=lf

*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.woff binary
*.woff2 binary
*.ttf binary
*.eot binary
*.otf binary
*.pdf binary
136 changes: 68 additions & 68 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,68 +1,68 @@
# cabal sandbox
.cabal-sandbox/
cabal.sandbox.config
# local database
*.sqlite3
*.sqlite3-shm
*.sqlite3-wal
# generated build files
/app/dist/
# generated stack files
.stack-work/
# generated CSS
/public/style/
# generated resources
/graphs/gen/*.svg
/graphs/gen/*.png
# course videos
/public/videos/
# generated documentation
/doc
# IDE project files
.idea
.vscode
# Node (Javascript) modules
/node_modules
# pnpm files
.pnpm-store/
# TODO: eventually remove all public/js files from tracking
/public/js/search
/public/js/grid/app.js
/public/js/post/app.js
/public/js/generate/app.js
/public/js/graph/app.js
/public/js/draw/app.js
/public/js/about/app.js
/public/*.svg
/public/*.png
/public/*.ttf
/public/*.eot
/public/*.woff
/public/*.png
/public/*.woff2
# coverage directory used by tools like istanbul and jest --coverage
coverage
# cypress suggested folder structure scaffolding
/cypress/fixtures
/cypress/integration/examples
/cypress/plugins
/cypress/support
# Python virtual environment
venv
# Other generated files
.eslintcache
# cabal sandbox
.cabal-sandbox/
cabal.sandbox.config

# local database
*.sqlite3
*.sqlite3-shm
*.sqlite3-wal

# generated build files
/app/dist/

# generated stack files
.stack-work/

# generated CSS
/public/style/

# generated resources
/graphs/gen/*.svg
/graphs/gen/*.png

# course videos
/public/videos/

# generated documentation
/doc

# IDE project files
.idea
.vscode

# Node (Javascript) modules
/node_modules

# pnpm files
.pnpm-store/

# TODO: eventually remove all public/js files from tracking
/public/js/search
/public/js/grid/app.js
/public/js/post/app.js
/public/js/generate/app.js
/public/js/graph/app.js
/public/js/draw/app.js
/public/js/about/app.js
/public/*.svg
/public/*.png
/public/*.ttf
/public/*.eot
/public/*.woff
/public/*.png
/public/*.woff2

# coverage directory used by tools like istanbul and jest --coverage
coverage

# cypress suggested folder structure scaffolding
/cypress/fixtures
/cypress/integration/examples
/cypress/plugins
/cypress/support

# Python virtual environment
venv

# Other generated files
.eslintcache
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Switched CI provider from CircleCI to GitHub Actions
- Cleared up documentation for various graph-related front-end functions
- Adopted TypeScript v7 into build and CI pipelines and converted `js/components/graph/Button.js` to `Button.tsx` as a proof of concept
- Added `.gitattributes` file to standardize to LF line endings and renormalized codebase

## [0.8.1] - 2026-08-10

Expand Down
Loading
Loading