@vatvaghool/create-ipl-dashboard 0.1.23 → 0.1.24
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.
- package/README.md +1 -0
- package/package.json +1 -1
- package/template/README.md +1 -0
- package/template/package.json +1 -0
- package/template/scripts/dev-welcome.mjs +1 -0
package/README.md
CHANGED
|
@@ -61,6 +61,7 @@ npm run sync:ipl:watch # Start live sync
|
|
|
61
61
|
| `npm run sync:ipl` | Scrape live leaderboard snapshot |
|
|
62
62
|
| `npm run sync:ipl:watch` | Scrape leaderboard in watch mode |
|
|
63
63
|
| `npm run sync:cloud` | Run all scrapers |
|
|
64
|
+
| `npm run sync:ipl:transfers-daily` | Scrape transfer/booster data |
|
|
64
65
|
| `npm run seed:api` | POST /api/ops/seed — seed match data into MongoDB |
|
|
65
66
|
| `npm run seed:league` | Seed league metadata into MongoDB |
|
|
66
67
|
| `npm run test` | Run tests |
|
package/package.json
CHANGED
package/template/README.md
CHANGED
|
@@ -24,6 +24,7 @@ Open http://localhost:3000
|
|
|
24
24
|
| `npm run sync:ipl` | Scrape live leaderboard snapshot |
|
|
25
25
|
| `npm run sync:ipl:watch` | Scrape leaderboard in watch mode |
|
|
26
26
|
| `npm run sync:cloud` | Run all scrapers |
|
|
27
|
+
| `npm run sync:ipl:transfers-daily` | Scrape transfer/booster data |
|
|
27
28
|
| `npm run seed:api` | Seed match data into MongoDB |
|
|
28
29
|
| `npm run seed:league` | Seed league metadata |
|
|
29
30
|
| `npm run test` | Run tests |
|
package/template/package.json
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"capture:ipl-auth": "node scripts/capture-ipl-auth.mjs",
|
|
10
10
|
"sync:ipl": "node scripts/sync-ipl.mjs",
|
|
11
11
|
"sync:ipl:watch": "node scripts/sync-ipl.mjs --watch",
|
|
12
|
+
"sync:ipl:transfers-daily": "node scripts/sync-transfers-daily.mjs",
|
|
12
13
|
"sync:cloud": "node scripts/sync-cloud.mjs",
|
|
13
14
|
"build": "next build",
|
|
14
15
|
"start": "next start",
|
|
@@ -35,6 +35,7 @@ const cmds = [
|
|
|
35
35
|
{ cmd: "sync:ipl", desc: "Scrape leaderboard snapshot" },
|
|
36
36
|
{ cmd: "sync:ipl:watch", desc: "Watch mode — rescrape every 60s" },
|
|
37
37
|
{ cmd: "sync:cloud", desc: "Run all scrapers" },
|
|
38
|
+
{ cmd: "sync:ipl:transfers-daily", desc: "Scrape transfer/booster data" },
|
|
38
39
|
{ cmd: "seed:api", desc: "Seed match data into MongoDB" },
|
|
39
40
|
{ cmd: "seed:league", desc: "Seed league metadata" },
|
|
40
41
|
{ cmd: "test", desc: "Run tests" },
|