Skip to content
Open
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/cli-monorepo-utils.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/react-generic-memo.md

This file was deleted.

6 changes: 3 additions & 3 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @padosoft/cli

## 1.3.0

### Minor Changes

- [#33](https://github.com/padosoft/ts-support/pull/33) [`d5ebec8`](https://github.com/padosoft/ts-support/commit/d5ebec8c27f3d9afa16f3a3ee15eb29945c8babd) Thanks [@47PADO47](https://github.com/47PADO47)! - Add three monorepo management commands: `dep add`, `expo update`, and `i18n extract`.

- `dep add [packages...]` — adds packages to the workspace catalog and wires `catalog:` refs to all `apps/` and/or `packages/` members; supports `--tag`, `--scope`, `--dry-run`, `--install`
- `expo update` — batch-updates all Expo packages (`expo`, `expo-*`, `@expo/*`) in the current workspace to a specified npm dist-tag (default: `canary`); handles `dependencies`, `devDependencies`, `overrides`, `workspaces.catalog`, and `patchedDependencies` keys
- `i18n extract [paths...]` — extracts flat dot-notation translation keys from any locale file via dynamic import; supports `--format array|object`, `--file`, and `--table`

Add `utils/workspace.ts` with shared utilities: `readJSON`, `writeJSON`, `runCommand`, `formatFile`, `parsePackageSpec`, `getTaggedVersion`, `sortDeps`, `mapLimit`.

## 1.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"typescript",
"padosoft"
],
"version": "1.2.0",
"version": "1.3.0",
"type": "module",
"files": [
"dist"
Expand Down
6 changes: 6 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @padosoft/react

## 1.1.0

### Minor Changes

- [#35](https://github.com/padosoft/ts-support/pull/35) [`84ef39a`](https://github.com/padosoft/ts-support/commit/84ef39a7c554105962e234c34acd01a0cbff9830) Thanks [@47PADO47](https://github.com/47PADO47)! - Add `genericMemo` — a typed wrapper around `React.memo()` that infers component props automatically and accepts an optional `propsAreEqual` comparator.

## 1.0.0

### Major Changes
Expand Down
10 changes: 8 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
{
"name": "@padosoft/react",
"description": "React hooks and HOC utilities for padosoft projects, including useConfig and component composition helpers",
"keywords": ["react", "hooks", "hoc", "typescript", "padosoft"],
"version": "1.0.0",
"keywords": [
"react",
"hooks",
"hoc",
"typescript",
"padosoft"
],
"version": "1.1.0",
"type": "module",
"types": "./dist/index.d.mts",
"files": [
Expand Down