Compare commits

...

2 Commits

Author SHA1 Message Date
semantic-release-bot
8bd6d6d8b7 chore(release): 2.0.2 [skip ci]
## [2.0.2](https://github.com/antialias/soroban-abacus-flashcards/compare/v2.0.1...v2.0.2) (2025-10-07)

### Bug Fixes

* update Dockerfile pnpm version and fix TypeScript config ([43077a8](43077a80e2))
2025-10-07 14:54:44 +00:00
Thomas Hallock
43077a80e2 fix: update Dockerfile pnpm version and fix TypeScript config
- Upgrade Dockerfile from pnpm 8.0.0 to 9.15.4 for lockfile compatibility
- Add "types": [] to abacus-react tsconfig to prevent implicit @types includes
- Fixes Docker build lockfile incompatibility
- Fixes TypeScript error looking for @types/minimatch

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-07 09:54:04 -05:00
4 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,10 @@
## [2.0.2](https://github.com/antialias/soroban-abacus-flashcards/compare/v2.0.1...v2.0.2) (2025-10-07)
### Bug Fixes
* update Dockerfile pnpm version and fix TypeScript config ([43077a8](https://github.com/antialias/soroban-abacus-flashcards/commit/43077a80e271a793c88f100874914ae6f3c515b5))
## [2.0.1](https://github.com/antialias/soroban-abacus-flashcards/compare/v2.0.0...v2.0.1) (2025-10-07)

View File

@@ -5,7 +5,7 @@ FROM node:18-alpine AS base
RUN apk add --no-cache python3 py3-setuptools make g++
# Install pnpm and turbo
RUN npm install -g pnpm@8.0.0 turbo@1.10.0
RUN npm install -g pnpm@9.15.4 turbo@1.10.0
WORKDIR /app

View File

@@ -1,6 +1,6 @@
{
"name": "soroban-monorepo",
"version": "2.0.1",
"version": "2.0.2",
"private": true,
"description": "Beautiful Soroban Flashcard Generator - Monorepo",
"workspaces": [

View File

@@ -16,7 +16,8 @@
"jsx": "react-jsx",
"declaration": true,
"outDir": "./dist",
"rootDir": "./src"
"rootDir": "./src",
"types": []
},
"include": [
"src/**/*"