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
5 changes: 0 additions & 5 deletions .github/workflows/build-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,6 @@ jobs:
echo "✅ Solid dist copied"
fi
if [ -d "npm-packages/vue-dist" ]; then
cp -r npm-packages/vue-dist packages/vue/dist
echo "✅ Vue dist copied"
fi
echo ""
echo "Package extraction complete:"
ls -lah packages/core/dist/
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/build-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,13 +165,6 @@ jobs:
echo "⚠️ Solid dist not found (skipping)"
fi

if [ -d packages/vue/dist ]; then
cp -r packages/vue/dist artifacts/npm-packages/vue-dist
echo "✅ Vue dist packaged"
else
echo "⚠️ Vue dist not found (skipping)"
fi

cd artifacts
zip -r npm-packages.zip npm-packages/
test -f npm-packages.zip || (echo "❌ Failed to create npm-packages zip" && exit 1)
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/npm-latest-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,6 @@ jobs:
echo "Copied solid dist"
fi
if [ -d "npm-packages/vue-dist" ]; then
cp -r npm-packages/vue-dist packages/vue/dist
echo "Copied vue dist"
fi
echo "Package extraction complete"
- name: Publish packages (dry-run)
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,9 @@ jobs:
TAG_VERSION="${{ needs.prepare.outputs.version }}"
echo "Validating version: $TAG_VERSION"
# Check packages/*/package.json versions (excluding vue by default)
# Check packages/*/package.json versions
FAILED=false
for pkg in packages/*/; do
# Skip vue package
if [[ "$pkg" == "packages/vue/" ]]; then
echo "Skipping vue package version check"
continue
fi
if [ -f "$pkg/package.json" ]; then
PKG_VERSION=$(node -p "require('./$pkg/package.json').version")
if [ "$PKG_VERSION" != "$TAG_VERSION" ]; then
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ This monorepo contains the following packages:
- [`@opentui/core`](packages/core) - The core library works completely standalone, providing an imperative API and all the primitives.
- [`@opentui/solid`](packages/solid) - The SolidJS reconciler for OpenTUI.
- [`@opentui/react`](packages/react) - The React reconciler for OpenTUI.
- [`@opentui/vue`](packages/vue) - The Vue reconciler (unmaintained)
- [`@opentui/go`](packages/go) - Go bindings (unmaintained)

## Install

Expand Down
53 changes: 0 additions & 53 deletions bun.lock

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

150 changes: 0 additions & 150 deletions install.sh

This file was deleted.

3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,12 @@
],
"scripts": {
"build": "cd packages/core && bun run build && cd ../solid && bun run build && cd ../react && bun run build",
"build:go": "cd packages/go && go build ./...",
"pre-publish": "bun scripts/pre-publish.ts",
"publish": "bun run pre-publish && bun run publish:core && bun run publish:react && bun run publish:solid",
"publish:core": "cd packages/core && bun run publish",
"publish:react": "cd packages/react && bun run publish",
"publish:solid": "cd packages/solid && bun run publish",
"publish:vue": "cd packages/vue && bun run publish",
"prepare-release": "bun scripts/prepare-release.ts",
"test:go": "cd packages/go && go test -v . && go build ./examples/...",
"prettier:write": "prettier --write .",
"test": "bun run --filter '@opentui/core' --filter '@opentui/solid' --filter '@opentui/react' --if-present test"
},
Expand Down
Empty file removed packages/go/.gitignore
Empty file.
Loading
Loading