adaptive-memory-multi-model-router 2.14.51 → 2.14.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,8 +9,9 @@
9
9
  "test:coverage": "vitest run --coverage"
10
10
  },
11
11
  "devDependencies": {
12
+ "esbuild": "^0.28.1",
12
13
  "typescript": "^5.8.0",
13
- "vitest": "^3.1.0"
14
+ "vitest": "^4.1.9"
14
15
  },
15
16
  "dependencies": {
16
17
  "nanoid": "^5.0.0"
@@ -1,51 +0,0 @@
1
- name: Auto-Publish (7x daily)
2
-
3
- # Keeps package on npm "recently updated" feed
4
- # Each publish drives ~137 organic downloads
5
- # Schedule: every 3.4 hours = 7x daily
6
-
7
- on:
8
- schedule:
9
- - cron: '0 0,3,7,10,14,17,21 * * *' # 7x daily UTC
10
- workflow_dispatch: # manual trigger
11
-
12
- jobs:
13
- publish:
14
- runs-on: ubuntu-latest
15
- permissions:
16
- contents: write
17
- steps:
18
- - uses: actions/checkout@v4
19
- with:
20
- fetch-depth: 0 # Fetch full history for version tracking
21
-
22
- - uses: actions/setup-node@v4
23
- with:
24
- node-version: 20
25
- registry-url: 'https://registry.npmjs.org'
26
-
27
- - run: npm ci
28
-
29
- - name: Build
30
- run: npm run build
31
-
32
- - name: Get current version
33
- id: version
34
- run: echo "VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
35
-
36
- - name: Add research insight
37
- run: |
38
- echo "## $(date -u +%Y-%m-%dT%H:%MZ)" >> research/PUBLISH_LOG.md
39
- VER=$(node -p "require('./package.json').version")
40
- echo "Published v$VER" >> research/PUBLISH_LOG.md
41
- echo "" >> research/PUBLISH_LOG.md
42
-
43
- - name: Patch + Publish + Commit
44
- run: |
45
- npm version patch --no-git-tag-version
46
- npm publish
47
- git add -A
48
- git commit -m "chore: auto-publish v$(node -p "require('./package.json').version")" || echo "Nothing to commit"
49
- git push || echo "Push failed (upstream may have changes)"
50
- env:
51
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -1,3 +0,0 @@
1
- ## 2026-06-13T11:56Z
2
- Published v2.14.50
3
-