rebrand: switch demo to @moss-dev/moss and moss, drop dead logo assets - #7
Open
ashvathsureshkumar wants to merge 1 commit into
Open
rebrand: switch demo to @moss-dev/moss and moss, drop dead logo assets#7ashvathsureshkumar wants to merge 1 commit into
ashvathsureshkumar wants to merge 1 commit into
Conversation
Renames across the image-search demo:
- setup-js/package.json, createIndex.ts, query.ts:
@inferedge/moss -> @moss-dev/moss
- setup-py/pyproject.toml, query.py, create_index.py:
inferedge-moss -> moss; from inferedge_moss -> from moss
- backend-py/pyproject.toml, requirements.txt, main.py: same pattern
- react-app/src/pages/ItemsPage.tsx: two hero/powered-by <img> srcs
pointed at dead InferEdgeLogo assets; switched to the existing
/Moss-logo.jpeg that the favicon already uses
- react-app/public/images/InferEdgeLogo_Dark_*.png removed (no more refs)
- readme.md prose link [usemoss.dev] -> [moss.dev]
Lockfiles regenerated (setup-py/uv.lock, backend-py/uv.lock, setup-js/package-lock.json).
Left alone: from moss_core import QueryOptions (module name unchanged
by the rebrand — inferedge-moss-core still publishes that module).
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Every subtree in the image-search demo still pointed at the old packages; this moves all three (setup-js, setup-py, backend-py, react-app) to the new names and drops dead logo PNGs.
Changes
@inferedge/moss->@moss-dev/mossinpackage.json,createIndex.ts,query.ts;package-lock.jsonregeneratedinferedge-moss->mossinpyproject.toml;from inferedge_moss->from mossinquery.pyandcreate_index.py;uv.lockregeneratedinferedge-moss->mossinpyproject.tomlandrequirements.txt;from inferedge_moss->from mossinmain.py;uv.lockregenerated<img>tags inItemsPage.tsxpointed at/images/InferEdgeLogo_Dark_Icon.png; switched to the existing/Moss-logo.jpegasset already used by the favicon. The two deadInferEdgeLogo_*.pngfiles underpublic/images/removed.[usemoss.dev](https://usemoss.dev/)->[moss.dev](https://moss.dev/).Left alone
from moss_core import QueryOptions— the Rust-bindings module name is unchanged by the user-facing package rename (inferedge-moss-corestill installs themoss_corePython module).Verification
uv lockresolved cleanly on both setup-py and backend-py:Added moss v1.0.0,Removed inferedge-mossnpm installclean,tsc --noEmitpasses on setup-js with a freshnode_modulesgrep -rn 'inferedge\\|InferEdge' --include='*.py,*.ts,*.tsx,*.toml,*.md,*.txt,*.json'returns zero hits (excluding lockfiles)Audit context
Part of the Moss rebrand audit. Sibling PRs: usemoss/.github#2, usemoss/pipecat-moss#4, usemoss/moss-gemini-pipecat-demo#1, usemoss/moss.dev#113, usemoss/moss-docs#45.