- Replace /api/passwords with /api/accounts in accounts tutorial
(accounts-password API lives in the accounts page)
- Replace /api/accounts-multi with /api/accounts
- Fix /tutorials dead link to point to react tutorial
- Fix /packages/3.writing-atmosphere-packages to use new path (#7)
- Escape {{_}} and {{currentUser}} with v-pre to prevent Vue SSR
interpolation errors
- Replace ApiBox with markdown headings for deprecated collection
extension aliases (addPrototype, removePrototype) that lack jsdoc
entries
Replace guide.meteor.com, v3-docs.meteor.com, and docs.meteor.com
URLs with internal v3 paths. Drop .html extensions. Update text
references from 'Meteor Guide' to 'Tutorials' where appropriate.
Affected: accounts API, CLI reference, cordova, install, roadmap,
web-apps, rspack-bundler-integration, react-meteor-data, accounts-ui,
modules, jam-method, and pub-sub docs.
- Add Collection Extensions API docs, integrated into core from
lai:collection-extensions (PR#13830)
- Add Meteor.deferDev() for optimizing server startup in dev (PR#14006)
* Duplicate forEachAsync definition removed.
* going back
* docs: add loginWithToken to accounts.md
* repush the brench
* Restore accounnt-ui documentation line and keel loginWithToken docs
* Fix formatting in accounts.md documentation
* Fix formatting issue in accounts.md
---------
Co-authored-by: Italo José <italo.i@live.com>
While working on updating apps to use the new modern bundle, we came across some places that used this exciting pattern to get some performance gains on dev mode:
```js
if (Meteor.isDevelopment) {
Meteor.defer(loadSomethingRemote);
} else {
await loadSomethingRemote();
}
```
Sometimes we do not need this service while in dev and this would only make our startup slower, _now_ with this function we can have this nice api to wrap it:
```js
await Meteor.deferrable(connectToExternalDB, {
on: ["development"],
});
```