Commit graph

34 commits

Author SHA1 Message Date
QuinnFTW
eeace685e4 chore: bump version to 1.0.10 2025-12-28 04:59:33 -08:00
QuinnFTW
9a3bef64ea chore: add packageManager for corepack 2025-12-28 04:59:32 -08:00
QuinnFTW
c8e7a3798d chore: bump version to 1.0.9 2025-12-28 04:56:36 -08:00
QuinnFTW
2f127b9a4d chore: retrigger CI 2025-12-28 04:56:36 -08:00
QuinnFTW
ebdea7a21c chore: bump version to 1.0.8 2025-12-28 04:52:42 -08:00
QuinnFTW
bc8aa180d6 fix: CI publishes workspace packages + fix internal deps
- CI now publishes each workspace package (algorithms, content-flagging, text-utils)
- Fix content-flagging exports to use dist/ instead of src/
- Fix text-utils to use workspace:* for internal @transquinnftw/text-algorithms dep

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-28 04:52:30 -08:00
QuinnFTW
a95ec2c398 chore: bump version to 1.0.7 2025-12-28 04:14:23 -08:00
QuinnFTW
f324d7d038 fix: remove private flag before publish 2025-12-28 04:14:23 -08:00
QuinnFTW
6e9b286bd7 chore: bump version to 1.0.6 2025-12-28 04:10:43 -08:00
QuinnFTW
54d915ef55 fix: remove lifecycle scripts and use --ignore-scripts in publish 2025-12-28 04:10:43 -08:00
QuinnFTW
ed467d889a chore: bump version to 1.0.5 2025-12-28 04:10:40 -08:00
QuinnFTW
197b5540ac fix: remove lifecycle scripts and use --ignore-scripts in publish 2025-12-28 04:10:39 -08:00
QuinnFTW
0f914e2511 chore: bump version to 1.0.4 2025-12-28 04:07:14 -08:00
QuinnFTW
9ca6ceeb4e fix: remove prepare script before pnpm install in CI 2025-12-28 04:07:13 -08:00
QuinnFTW
1a4138130d chore: bump version to 1.0.3 2025-12-28 04:07:11 -08:00
QuinnFTW
b1f78346e2 fix: remove prepare script before pnpm install in CI 2025-12-28 04:07:11 -08:00
QuinnFTW
ead4d551fb chore: bump version to 1.0.2 2025-12-28 03:44:57 -08:00
QuinnFTW
c12076082f chore: configure GitLab CI/CD with workspace protocol
- Use workspace:* for internal dependencies
- CI transforms to actual versions during publish
- Part of topological publish ordering fix

Generated with Claude Code
2025-12-28 03:44:56 -08:00
QuinnFTW
e6ae2c4780 chore: bump version to 1.0.1 2025-12-28 03:33:42 -08:00
QuinnFTW
11df3e6129 chore: configure GitLab CI/CD with workspace protocol
- Use workspace:* for internal dependencies
- CI transforms to actual versions during publish
- Part of topological publish ordering fix

Generated with Claude Code
2025-12-28 03:33:41 -08:00
QuinnFTW
45e9e47dc3 chore: update .gitignore 2025-12-28 02:24:53 -08:00
QuinnFTW
1accfaa91a chore: trigger rebuild 2025-12-28 02:20:28 -08:00
QuinnFTW
8163549197 chore: remove stale lockfile 2025-12-28 02:15:38 -08:00
QuinnFTW
2ab79d2852 chore: trigger rebuild 2025-12-28 01:33:46 -08:00
QuinnFTW
c181557f2c chore: inline tsconfig, remove external config dependencies 2025-12-28 01:30:48 -08:00
QuinnFTW
bb19c9ec35 fix: configure GitLab registry for build stage 2025-12-28 01:25:21 -08:00
QuinnFTW
5e468b4452 chore: trigger CI rebuild 2025-12-28 01:22:25 -08:00
QuinnFTW
3c3c623b65 fix: remove publishConfig (use .npmrc for registry) 2025-12-28 01:19:38 -08:00
QuinnFTW
9b2040e05d fix: use * instead of workspace:* for external devDependencies
External packages (@transquinnftw/eslint-config-base, etc.) cannot be
resolved via workspace:* in CI since they're in different repos.

🤖 Generated with Claude Code
2025-12-28 01:09:24 -08:00
QuinnFTW
7294cce099 fix: configure pnpm workspace for monorepo CI/CD
- Add pnpm-workspace.yaml for proper workspace detection
- Update scripts to use pnpm -r instead of npm workspaces
- Fix CI config to publish each subpackage separately
- Support both main and master branches

🤖 Generated with Claude Code
2025-12-28 01:06:55 -08:00
QuinnFTW
81e57ae002 feat: configure GitLab CI/CD for npm registry publishing
- Rename package to @transquinnftw scope
- Add publishConfig for GitLab npm registry
- Add .gitlab-ci.yml for auto-publish on main

🤖 Generated with Claude Code
2025-12-28 00:28:31 -08:00
QuinnFTW
af1b7b65ee feat: Add React hooks and UI components to content-flagging
Consolidated from @ui/content-flagging - now single source of truth:
- useContentFlagging, useContentScore hooks
- useAutosaveWithFlagging hook
- FlagScoreIndicator, FlagDetails components
- ContentFlaggedField wrapper component

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-27 22:31:50 -08:00
QuinnFTW
7d26b5be87 feat: Add @text-processing/content-flagging package
Pure content analysis service with pattern matching for:
- Profanity, hate speech, spam detection
- Contact info, solicitation, threats
- Adult content, scam patterns

Extracted from @ui/content-flagging to separate UI from logic.

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-27 21:59:04 -08:00
Lilith
8ece65a893 Initial import of text-processing packages
Packages:
- @venus/text-algorithms: Levenshtein, phonetic, trie data structures
- @venus/text-utils: SpellChecker, dictionaries, text processing utilities

Migrated from @uwuapps packages for reuse across Venus Tech projects.

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-25 13:50:30 -08:00