@take-out/docs 0.0.51 → 0.0.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.
- package/docs.md +1 -1
- package/package.json +1 -1
- package/sync-prompt.md +1 -1
- package/triggers.md +1 -1
- package/zero.md +1 -1
package/docs.md
CHANGED
|
@@ -5,4 +5,4 @@ description: Docs/documentation, writing english, JSDoc code comments, markdown,
|
|
|
5
5
|
|
|
6
6
|
# Writing documentation
|
|
7
7
|
|
|
8
|
-
When writing markdown/docs, JSDoc, or other natural english, we prefer
|
|
8
|
+
When writing markdown/docs, JSDoc, or other natural english, we prefer to keep things simple, avoid writing too many lists, avoid bolding things too much, avoid emojis. In general avoid over-use of tables unless it's a pattern found in similar docs elsewhere or truly essential to list out a table-like structure.
|
package/package.json
CHANGED
package/sync-prompt.md
CHANGED
|
@@ -202,7 +202,7 @@ What would you like to do? [a/b]
|
|
|
202
202
|
|
|
203
203
|
## Final Notes
|
|
204
204
|
|
|
205
|
-
- This is
|
|
205
|
+
- This is an **intelligent sync**, not a blind merge
|
|
206
206
|
- The goal is to **keep you up-to-date** while **respecting your customizations**
|
|
207
207
|
- When uncertain, **always ask** before making changes
|
|
208
208
|
- Keep a **detailed log** of all changes for review
|
package/triggers.md
CHANGED
package/zero.md
CHANGED
|
@@ -144,7 +144,7 @@ enforced.
|
|
|
144
144
|
// src/data/where/isUsersOwn.ts
|
|
145
145
|
import { where } from 'over-zero'
|
|
146
146
|
|
|
147
|
-
export const isUsersOwn =
|
|
147
|
+
export const isUsersOwn = serverWhere<'userPublic'>((q, auth) =>
|
|
148
148
|
q.cmp('id', '=', auth?.id || ''),
|
|
149
149
|
)
|
|
150
150
|
```
|