Skip to content

Commit

Permalink
fix(core/validation): fix imports without an extension
Browse files Browse the repository at this point in the history
  • Loading branch information
murarustefaan committed Oct 10, 2023
1 parent a0b4ed9 commit eac2e4a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/validation/src/references/mappers/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {endpointSliceMappers} from './endpointSlice.js';
import {Resource} from '../../common/types.js';
import {isDefined} from '../../utils/isDefined.js';
import {ownerReferenceMapper} from './ownerReference.js';
import {validatingAdmissionPolicyBindingMappers} from './validatingAdmissionPolicyBinding';
import {validatingAdmissionPolicyBindingMappers} from './validatingAdmissionPolicyBinding.js';

export type SiblingMatcher = (
source: Resource,
Expand Down
2 changes: 1 addition & 1 deletion packages/validation/src/references/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {getResourceRefNodes} from './utils/getResourceNodes.js';
import {refMapperMatchesKind} from './utils/refMatcher.js';
import {processKustomizations} from './utils/kustomizeRefs.js';
import {ResourceParser} from '../common/resourceParser.js';
import {isDefined} from '../utils/isDefined';
import {isDefined} from '../utils/isDefined.js';
import {isNode} from 'yaml';

/**
Expand Down

0 comments on commit eac2e4a

Please sign in to comment.