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
11 changes: 0 additions & 11 deletions .changeset/olive-hounds-smile.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/tall-pears-invent.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/wide-donkeys-shave.md

This file was deleted.

8 changes: 8 additions & 0 deletions apps/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# api

## 0.0.1

### Patch Changes

- Updated dependencies [942d63b]
- @repo/api-contracts@1.0.0
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "api",
"version": "0.0.0",
"version": "0.0.1",
"private": true,
"main": "./src/index.ts",
"types": "./src/router.ts",
Expand Down
11 changes: 11 additions & 0 deletions apps/mobile-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# mobile-web

## 0.0.1

### Patch Changes

- Updated dependencies [942d63b]
- Updated dependencies [942d63b]
- Updated dependencies [942d63b]
- @repo/ui@1.0.0
- api@0.0.1
2 changes: 1 addition & 1 deletion apps/mobile-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobile-web",
"version": "0.0.0",
"version": "0.0.1",
"private": true,
"main": "expo-router/entry",
"scripts": {
Expand Down
15 changes: 15 additions & 0 deletions packages/api-contracts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# @repo/api-contracts

## 1.0.0

### Major Changes

- 942d63b: Modernize the whole toolchain: Expo 57 (React 19.2, React Native 0.86), Prisma 7
with a driver adapter, Zod 4, Fastify 5, TypeScript 6, ESLint 10, and pnpm 11.

Breaking for consumers of these packages:

- `@repo/ui` now requires React >= 19 and React Native >= 0.86.
- `@repo/api-contracts` emits Zod 4 schemas; `z.string().uuid()`/`.email()`/`.url()`
are now `z.uuid()`/`z.email()`/`z.url()`.
- `@repo/config`'s ESLint preset targets ESLint 10 flat config.
2 changes: 1 addition & 1 deletion packages/api-contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@repo/api-contracts",
"version": "0.0.0",
"version": "1.0.0",
"private": true,
"main": "src/index.ts",
"types": "src/index.ts",
Expand Down
38 changes: 38 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# @repo/config

## 1.0.0

### Major Changes

- 942d63b: Modernize the whole toolchain: Expo 57 (React 19.2, React Native 0.86), Prisma 7
with a driver adapter, Zod 4, Fastify 5, TypeScript 6, ESLint 10, and pnpm 11.

Breaking for consumers of these packages:

- `@repo/ui` now requires React >= 19 and React Native >= 0.86.
- `@repo/api-contracts` emits Zod 4 schemas; `z.string().uuid()`/`.email()`/`.url()`
are now `z.uuid()`/`z.email()`/`z.url()`.
- `@repo/config`'s ESLint preset targets ESLint 10 flat config.

### Minor Changes

- 942d63b: Drive all styling from the `@elirobinson/tokens` design system.

`@repo/config/tailwind` is now generated from the design system's stylesheets by
`pnpm tokens:sync` rather than hand-written: 109 colours plus the spacing,
radius, type, weight, line-height, tracking, z-index, duration and container
scales. The mobile platform layer is the baseline, so radii and the small end of
the type ramp are the phone-tuned values.

`@repo/ui`'s Button now names design system tokens (`bg-accent`, `text-fg`)
instead of the old ad-hoc `primary`/`gray` palette. Colours resolve through CSS
variables, so `dark:` variants swap real values.

### Patch Changes

- 942d63b: Fix dark mode and the touch target floor on native.

The token variables move from an `@import`ed stylesheet into an `addBase` plugin,
which is the only ordering NativeWind accepts for `.dark:root` on native. Adds a
`minHeight` scale from the design system's `--target` tokens, and `@repo/ui`'s
Button now carries `min-h-target` so it meets the 44px floor.
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@repo/config",
"version": "0.0.0",
"version": "1.0.0",
"private": true,
"main": "index.js",
"exports": {
Expand Down
38 changes: 38 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# @repo/ui

## 1.0.0

### Major Changes

- 942d63b: Modernize the whole toolchain: Expo 57 (React 19.2, React Native 0.86), Prisma 7
with a driver adapter, Zod 4, Fastify 5, TypeScript 6, ESLint 10, and pnpm 11.

Breaking for consumers of these packages:

- `@repo/ui` now requires React >= 19 and React Native >= 0.86.
- `@repo/api-contracts` emits Zod 4 schemas; `z.string().uuid()`/`.email()`/`.url()`
are now `z.uuid()`/`z.email()`/`z.url()`.
- `@repo/config`'s ESLint preset targets ESLint 10 flat config.

### Minor Changes

- 942d63b: Drive all styling from the `@elirobinson/tokens` design system.

`@repo/config/tailwind` is now generated from the design system's stylesheets by
`pnpm tokens:sync` rather than hand-written: 109 colours plus the spacing,
radius, type, weight, line-height, tracking, z-index, duration and container
scales. The mobile platform layer is the baseline, so radii and the small end of
the type ramp are the phone-tuned values.

`@repo/ui`'s Button now names design system tokens (`bg-accent`, `text-fg`)
instead of the old ad-hoc `primary`/`gray` palette. Colours resolve through CSS
variables, so `dark:` variants swap real values.

### Patch Changes

- 942d63b: Fix dark mode and the touch target floor on native.

The token variables move from an `@import`ed stylesheet into an `addBase` plugin,
which is the only ordering NativeWind accepts for `.dark:root` on native. Adds a
`minHeight` scale from the design system's `--target` tokens, and `@repo/ui`'s
Button now carries `min-h-target` so it meets the 44px floor.
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@repo/ui",
"version": "0.0.0",
"version": "1.0.0",
"private": true,
"main": "src/index.ts",
"types": "src/index.ts",
Expand Down
15 changes: 15 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# @repo/utils

## 1.0.0

### Major Changes

- 942d63b: Modernize the whole toolchain: Expo 57 (React 19.2, React Native 0.86), Prisma 7
with a driver adapter, Zod 4, Fastify 5, TypeScript 6, ESLint 10, and pnpm 11.

Breaking for consumers of these packages:

- `@repo/ui` now requires React >= 19 and React Native >= 0.86.
- `@repo/api-contracts` emits Zod 4 schemas; `z.string().uuid()`/`.email()`/`.url()`
are now `z.uuid()`/`z.email()`/`z.url()`.
- `@repo/config`'s ESLint preset targets ESLint 10 flat config.
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@repo/utils",
"version": "0.0.0",
"version": "1.0.0",
"private": true,
"main": "src/index.ts",
"types": "src/index.ts",
Expand Down