Remove unused ejson dependency from accounts-password, accounts-passwordless, and session

These packages don't use EJSON directly — they get it transitively
through their other dependencies.
This commit is contained in:
Harry Adel
2026-03-12 18:31:49 +02:00
committed by italo jose
parent ce14baba84
commit 75ef2c8c85
3 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ Npm.depends({
});
Package.onUse((api) => {
api.use(["accounts-base", "sha", "ejson", "ddp"], ["client", "server"]);
api.use(["accounts-base", "sha", "ddp"], ["client", "server"]);
// Export Accounts (etc) to packages using this one.
api.imply("accounts-base", ["client", "server"]);

View File

@@ -4,7 +4,7 @@ Package.describe({
});
Package.onUse(api => {
api.use(['accounts-base', 'sha', 'ejson', 'ddp'], ['client', 'server']);
api.use(['accounts-base', 'sha', 'ddp'], ['client', 'server']);
// Export Accounts (etc) to packages using this one.
api.imply('accounts-base', ['client', 'server']);

View File

@@ -4,7 +4,7 @@ Package.describe({
});
Package.onUse(function (api) {
api.use(['ecmascript', 'reactive-dict', 'ejson'], 'client');
api.use(['ecmascript', 'reactive-dict'], 'client');
// Session can work with or without reload, but if reload is present
// it should load first so we can detect it at startup and populate