@jobsearch-works/firestore-models 4.2.3 → 4.2.4
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 +17 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -212,3 +212,20 @@ type LocationId = (typeof locations)[number]["id"];
|
|
|
212
212
|
```bash
|
|
213
213
|
npm install @jobsearch-works/firestore-models
|
|
214
214
|
```
|
|
215
|
+
|
|
216
|
+
## Consumption Policy (Important)
|
|
217
|
+
|
|
218
|
+
- Always consume this library via the published npm package (semver), e.g. `^4.x`.
|
|
219
|
+
- Do not link it via local file paths (e.g. `"file:../firestore-models"`) in downstream projects.
|
|
220
|
+
- Reason: CI/CD and remote environments cannot resolve local file links; using the registry guarantees consistent, reproducible builds.
|
|
221
|
+
- If you need changes, bump the version here and update dependents to that version.
|
|
222
|
+
|
|
223
|
+
Example in a consumer project's `package.json`:
|
|
224
|
+
|
|
225
|
+
```json
|
|
226
|
+
{
|
|
227
|
+
"dependencies": {
|
|
228
|
+
"@jobsearch-works/firestore-models": "^4.2.3"
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
```
|
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED