@xh/hoist 74.1.0 → 74.1.1

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.
@@ -178,7 +178,7 @@ export function apiDeprecated(name: string, opts: APIWarnOptions = {}) {
178
178
 
179
179
  const v = opts.v ?? 'a future release',
180
180
  msg = opts.msg ? ` ${opts.msg}.` : '',
181
- warn = `The use of '${name}' has been deprecated and will be removed in ${v}.${msg}`;
181
+ warn = `The use of '${name}' has been deprecated and will be removed in ${v}. ${msg}`;
182
182
  if (!_seenWarnings[warn]) {
183
183
  console.warn(warn);
184
184
  _seenWarnings[warn] = true;