@xh/hoist 75.0.0-SNAPSHOT.1753720955374 → 75.0.0-SNAPSHOT.1753726213836

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.
@@ -195,7 +195,7 @@ export function apiDeprecated(name: string, opts: APIWarnOptions = {}) {
195
195
  if ('test' in opts && isUndefined(opts.test)) return;
196
196
 
197
197
  const v = opts.v ?? 'a future release',
198
- msg = opts.msg ? ` ${opts.msg}.` : '',
198
+ msg = opts.msg ?? '',
199
199
  warn = `The use of '${name}' has been deprecated and will be removed in ${v}. ${msg}`;
200
200
  if (!_seenWarnings[warn]) {
201
201
  logWarn(warn, opts.source);