@tungstenstudio/outschart-generator 1.0.0-rc.1 → 1.0.0
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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/recommend.ts +1 -1
package/package.json
CHANGED
package/src/recommend.ts
CHANGED
|
@@ -381,7 +381,7 @@ export function generateRecommended(options: {
|
|
|
381
381
|
const isDoubleOut = outMode === 'double';
|
|
382
382
|
const min = options.min ?? (isDoubleOut ? 2 : 1);
|
|
383
383
|
const max = options.max ?? (isDoubleOut ? 170 : 180);
|
|
384
|
-
const includeAlternates = options.includeAlternates ??
|
|
384
|
+
const includeAlternates = options.includeAlternates ?? false;
|
|
385
385
|
const altThreshold = options.altThreshold ?? 1.0;
|
|
386
386
|
|
|
387
387
|
// Build overrides: start with defaults for single-out, merge user overrides
|