mirror of
https://github.com/run-llama/mcp-server-llamacloud.git
synced 2026-06-30 20:47:54 -04:00
add changeset
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
# Changesets
|
||||
|
||||
This directory contains [changesets](https://github.com/changesets/changesets) which are used to generate the changelog and handle versioning for this package.
|
||||
|
||||
When you make a change that requires a version bump, run `npx changeset` and follow the prompts to create a new changeset file.
|
||||
|
||||
The changeset will be automatically used to create a PR that bumps the version and updates the changelog when the changes are merged to the main branch.
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json",
|
||||
"changelog": "@changesets/cli/changelog",
|
||||
"commit": false,
|
||||
"fixed": [],
|
||||
"linked": [],
|
||||
"access": "public",
|
||||
"baseBranch": "main",
|
||||
"updateInternalDependencies": "patch",
|
||||
"ignore": []
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@llamaindex/mcp-server-llamacloud": patch
|
||||
---
|
||||
|
||||
Support multiple indexes
|
||||
@@ -16,8 +16,8 @@ jobs:
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
cache: 'npm'
|
||||
node-version: "20"
|
||||
cache: "npm"
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Run lint
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Repo
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "20"
|
||||
cache: "npm"
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Add auth token to .npmrc file
|
||||
run: |
|
||||
cat << EOF >> ".npmrc"
|
||||
//registry.npmjs.org/:_authToken=$NPM_TOKEN
|
||||
EOF
|
||||
env:
|
||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
|
||||
- name: Get changeset status
|
||||
id: get-changeset-status
|
||||
run: |
|
||||
npx changeset status --output .changeset/status.json
|
||||
new_version=$(jq -r '.releases[0].newVersion' < .changeset/status.json || echo "")
|
||||
rm -fv .changeset/status.json
|
||||
echo "new-version=${new_version}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Create Release Pull Request or Publish to npm
|
||||
id: changesets
|
||||
uses: changesets/action@v1
|
||||
with:
|
||||
commit: Release ${{ steps.get-changeset-status.outputs.new-version || 'new version' }}
|
||||
title: Release ${{ steps.get-changeset-status.outputs.new-version || 'new version' }}
|
||||
# update version PR with the latest changesets
|
||||
version: npm run new-version
|
||||
# build package and call changeset publish
|
||||
publish: npm run release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
|
||||
# Refs: https://github.com/changesets/changesets/issues/421
|
||||
- name: Update lock file
|
||||
continue-on-error: true
|
||||
run: npm install --package-lock-only
|
||||
|
||||
- name: Commit lock file
|
||||
continue-on-error: true
|
||||
uses: stefanzweifel/git-auto-commit-action@v5
|
||||
with:
|
||||
commit_message: "chore: update lock file"
|
||||
branch: changeset-release/main
|
||||
file_pattern: "package-lock.json"
|
||||
Generated
+985
-2
File diff suppressed because it is too large
Load Diff
+5
-3
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "mcp-server-llamacloud",
|
||||
"name": "@llamaindex/mcp-server-llamacloud",
|
||||
"version": "0.1.0",
|
||||
"description": "A MCP server connecting to a managed index on LlamaCloud",
|
||||
"license": "MIT",
|
||||
@@ -14,18 +14,20 @@
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
|
||||
"prepare": "npm run build",
|
||||
"watch": "tsc --watch",
|
||||
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
|
||||
"format": "prettier --ignore-unknown --cache --check .",
|
||||
"format:write": "prettier --ignore-unknown --write .",
|
||||
"lint": "eslint . --ext .ts,.js,.mjs --fix"
|
||||
"lint": "eslint . --ext .ts,.js,.mjs --fix",
|
||||
"release": "npm run build && changeset publish",
|
||||
"new-version": "changeset version && npm run format:write && npm run build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@modelcontextprotocol/sdk": "^1.7.0",
|
||||
"llamaindex": "^0.9.11"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@changesets/cli": "^2.28.1",
|
||||
"@eslint/js": "^9.22.0",
|
||||
"@types/node": "^22.9.3",
|
||||
"eslint": "^9.22.0",
|
||||
|
||||
Reference in New Issue
Block a user