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
7 changes: 0 additions & 7 deletions .changeset/add-lynx-devtool-packages.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/correct-prettier-gate-note.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rspeedy-bundle-size-new.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/skill-daemon-entry-bundle.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/mcp-servers/devtool-connector/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @lynx-js/devtool-connector

## 0.9.4

### Patch Changes

- 6f4df9d: Add the Lynx DevTool packages: `@lynx-js/devtool-connector` (device transport layer with background daemon), `@lynx-js/devtool-mcp-server` (MCP server exposing DOM/CSS/Runtime/Performance and more tools), and an updated `@lynx-js/skill-lynx-devtool` skill with screenshot, console, heap snapshot, recorder, and ReactLynx inspection commands.
20 changes: 10 additions & 10 deletions packages/mcp-servers/devtool-connector/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
{
"name": "@lynx-js/devtool-connector",
"version": "0.9.3",
"type": "module",
"version": "0.9.4",
"license": "Apache-2.0",
"main": "./src/index.ts",
"types": "./src/index.ts",
"type": "module",
"imports": {
"#daemon-entry": "./src/daemon/entry.ts"
},
Expand Down Expand Up @@ -36,6 +34,8 @@
},
"./package.json": "./package.json"
},
"main": "./src/index.ts",
"types": "./src/index.ts",
"files": [
"CHANGELOG.md",
"dist",
Expand Down Expand Up @@ -65,11 +65,6 @@
"node": ">=18.19"
},
"publishConfig": {
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"imports": {
"#daemon-entry": "./dist/daemon/entry.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
Expand All @@ -92,6 +87,11 @@
"default": "./dist/streams/index.js"
},
"./package.json": "./package.json"
}
},
"imports": {
"#daemon-entry": "./dist/daemon/entry.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
9 changes: 9 additions & 0 deletions packages/mcp-servers/devtool-mcp-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# @lynx-js/devtool-mcp-server

## 0.13.4

### Patch Changes

- 6f4df9d: Add the Lynx DevTool packages: `@lynx-js/devtool-connector` (device transport layer with background daemon), `@lynx-js/devtool-mcp-server` (MCP server exposing DOM/CSS/Runtime/Performance and more tools), and an updated `@lynx-js/skill-lynx-devtool` skill with screenshot, console, heap snapshot, recorder, and ReactLynx inspection commands.
- Updated dependencies [6f4df9d]
- @lynx-js/devtool-connector@0.9.4
8 changes: 4 additions & 4 deletions packages/mcp-servers/devtool-mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lynx-js/devtool-mcp-server",
"version": "0.13.3",
"version": "0.13.4",
"description": "A mcp server that lets coding agents to control, operate and preview Lynx pages.",
"license": "Apache-2.0",
"type": "module",
Expand Down Expand Up @@ -51,8 +51,6 @@
"node": ">=18.19"
},
"publishConfig": {
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/main.js",
"exports": {
".": {
Expand All @@ -66,6 +64,8 @@
"default": "./dist/connector.js"
},
"./package.json": "./package.json"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
8 changes: 8 additions & 0 deletions packages/skills/lynx-devtool/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @lynx-js/skill-lynx-devtool

## 0.13.4

### Patch Changes

- 6f4df9d: Add the Lynx DevTool packages: `@lynx-js/devtool-connector` (device transport layer with background daemon), `@lynx-js/devtool-mcp-server` (MCP server exposing DOM/CSS/Runtime/Performance and more tools), and an updated `@lynx-js/skill-lynx-devtool` skill with screenshot, console, heap snapshot, recorder, and ReactLynx inspection commands.
- 4e9bb31: Bundle the connector daemon entry and inspector wrapper into the skill build so `DaemonTransport` can resolve `#daemon-entry` and the inspector UI assets are available at runtime.
8 changes: 4 additions & 4 deletions packages/skills/lynx-devtool/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@lynx-js/skill-lynx-devtool",
"version": "0.13.3",
"version": "0.13.4",
"type": "module",
"bin": {
"lynx-devtool": "./scripts/index.mjs"
},
"imports": {
"#daemon-entry": "./scripts/daemon-entry.mjs"
},
"bin": {
"lynx-devtool": "./scripts/index.mjs"
},
"files": [
"SKILL.md",
"scripts",
Expand Down
7 changes: 7 additions & 0 deletions packages/skills/rspeedy-bundle-size/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @lynx-js/skill-rspeedy-bundle-size

## 0.1.0

### Minor Changes

- 6d581f3: Add the rspeedy-bundle-size skill: a measure-first workflow for analyzing and reducing the bundle size of rspeedy/Lynx (ReactLynx) apps — the three size levers (media, background JS, main-thread leakage) plus compile-layer knobs, with dual-thread architecture, rsdoctor/stats measurement, and cross-project triage.
2 changes: 1 addition & 1 deletion packages/skills/rspeedy-bundle-size/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lynx-js/skill-rspeedy-bundle-size",
"version": "0.0.0",
"version": "0.1.0",
"description": "Analyze and reduce the bundle size of rspeedy/Lynx (ReactLynx) apps",
"repository": {
"url": "https://github.com/lynx-community/skills"
Expand Down