Skip to content

Commit

Permalink
fix!: remove rangeStep normalizer (#6992)
Browse files Browse the repository at this point in the history
Fix #5139
  • Loading branch information
kanitw authored Oct 25, 2020
1 parent b7827ce commit e4039a1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 112 deletions.
4 changes: 1 addition & 3 deletions src/normalize/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ import {isEmpty, keys, omit, varName} from '../util';
import {isSignalRef} from '../vega.schema';
import {NonFacetUnitNormalizer, NormalizerParams} from './base';
import {PathOverlayNormalizer} from './pathoverlay';
import {RangeStepNormalizer} from './rangestep';
import {replaceRepeaterInEncoding, replaceRepeaterInFacet} from './repeater';
import {RuleForRangedLineNormalizer} from './ruleforrangedline';

Expand All @@ -38,8 +37,7 @@ export class CoreNormalizer extends SpecMapper<NormalizerParams, FacetedUnitSpec
errorBarNormalizer,
errorBandNormalizer,
new PathOverlayNormalizer(),
new RuleForRangedLineNormalizer(),
new RangeStepNormalizer()
new RuleForRangedLineNormalizer()
];

public map(spec: GenericSpec<FacetedUnitSpec, LayerSpec, RepeatSpec, Field>, params: NormalizerParams) {
Expand Down
62 changes: 0 additions & 62 deletions src/normalize/rangestep.ts

This file was deleted.

47 changes: 0 additions & 47 deletions test/normalize/rangestep.test.ts

This file was deleted.

0 comments on commit e4039a1

Please sign in to comment.