campus-stats 0.4.1 → 0.4.3
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/CHANGELOG.md +11 -0
- package/README.md +3 -28
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.4.3
|
|
4
|
+
|
|
5
|
+
- npm `homepage` and `repository` both point at
|
|
6
|
+
https://campus-tawny-mu.vercel.app/ (no GitLab repo link on the package page)
|
|
7
|
+
|
|
8
|
+
## 0.4.2
|
|
9
|
+
|
|
10
|
+
- `homepage` → https://campus-tawny-mu.vercel.app/
|
|
11
|
+
- README on npm no longer links the private source clone URL; points at
|
|
12
|
+
public docs (`campus-docs` / Vercel)
|
|
13
|
+
|
|
3
14
|
## 0.4.1
|
|
4
15
|
|
|
5
16
|
- Point npm `repository` / `homepage` / `bugs` at the public docs project
|
package/README.md
CHANGED
|
@@ -25,8 +25,7 @@ npx campus matches --competition "Liga F" --team "Barcelona"
|
|
|
25
25
|
|
|
26
26
|
The CLI binaries are `campus` and `campus-stats` (same entrypoint).
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
Optional GitLab mirror: [`docs/gitlab-package.md`](./docs/gitlab-package.md).
|
|
28
|
+
Docs: https://campus-tawny-mu.vercel.app/
|
|
30
29
|
|
|
31
30
|
---
|
|
32
31
|
|
|
@@ -117,33 +116,9 @@ Injuries are **not** in these open feeds yet — the API is ready, the list is e
|
|
|
117
116
|
|
|
118
117
|
---
|
|
119
118
|
|
|
120
|
-
##
|
|
119
|
+
## Docs
|
|
121
120
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
```bash
|
|
125
|
-
git clone https://gitlab.com/marina34/campus.git
|
|
126
|
-
cd campus
|
|
127
|
-
npm install
|
|
128
|
-
npm run build
|
|
129
|
-
npm test
|
|
130
|
-
npx campus --help
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
---
|
|
134
|
-
|
|
135
|
-
## Project plan & docs
|
|
136
|
-
|
|
137
|
-
| Epic | Description |
|
|
138
|
-
|------|-------------|
|
|
139
|
-
| [00 — Foundation](./docs/epics/00-fundacion-v0.md) | Schema, StatsBomb, CLI, JSON cache |
|
|
140
|
-
| [01 — FBref](./docs/epics/01-adapter-fbref.md) | Second public source |
|
|
141
|
-
| [02 — Identity](./docs/epics/02-resolucion-identidad.md) | Cross-source team resolution |
|
|
142
|
-
| [03 — Player stats](./docs/epics/03-stats-jugadora.md) | Per-match player stats |
|
|
143
|
-
| [04 — SQLite](./docs/epics/04-persistencia-sqlite.md) | Persistence beyond JSON |
|
|
144
|
-
| [05 — Package](./docs/epics/05-publicacion-npm.md) | npmjs + GitLab package distribution |
|
|
145
|
-
|
|
146
|
-
More: [`docs/cron.md`](./docs/cron.md) · [`docs/injuries.md`](./docs/injuries.md) · [`docs/npm.md`](./docs/npm.md) · [`docs/gitlab-package.md`](./docs/gitlab-package.md) · [`CHANGELOG.md`](./CHANGELOG.md)
|
|
121
|
+
- https://campus-tawny-mu.vercel.app/
|
|
147
122
|
|
|
148
123
|
---
|
|
149
124
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "campus-stats",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "Campus — installable women's football data layer for apps (clubs, national teams, matches, fantasy points)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -41,12 +41,11 @@
|
|
|
41
41
|
"cli"
|
|
42
42
|
],
|
|
43
43
|
"repository": {
|
|
44
|
-
"
|
|
45
|
-
"url": "git+https://gitlab.com/marina34/campus-docs.git"
|
|
44
|
+
"url": "https://campus-tawny-mu.vercel.app/"
|
|
46
45
|
},
|
|
47
|
-
"homepage": "https://
|
|
46
|
+
"homepage": "https://campus-tawny-mu.vercel.app/",
|
|
48
47
|
"bugs": {
|
|
49
|
-
"url": "https://
|
|
48
|
+
"url": "https://campus-tawny-mu.vercel.app/"
|
|
50
49
|
},
|
|
51
50
|
"license": "MIT",
|
|
52
51
|
"devDependencies": {
|