Skip to content

Commit

Permalink
Remove index imports as they are not defined by package.json#exports (#…
Browse files Browse the repository at this point in the history
…1581)

* Remove index imports

* lint:fix
  • Loading branch information
NullVoxPopuli authored Mar 22, 2024
1 parent 9133795 commit 84ef91e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { HasSourceSpan } from '@glimmer/syntax';
import { generateSyntaxError, loc } from '@glimmer/syntax';
import { CurriedTypes } from '@glimmer/vm/index';
import { CurriedTypes } from '@glimmer/vm';

import type { Result } from '../../../shared/result';
import type * as mir from '../../2-encoding/mir';
Expand Down
2 changes: 1 addition & 1 deletion packages/@glimmer/syntax/lib/v1/legacy-interop.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { PresentArray } from '@glimmer/interfaces/index';
import type { PresentArray } from '@glimmer/interfaces';
import { asPresentArray, deprecate } from '@glimmer/util';

import type * as ASTv1 from './nodes-v1';
Expand Down
1 change: 0 additions & 1 deletion packages/@glimmer/syntax/test/plugin-node-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ test('deprecated program visitor', (assert) => {
return {
name: 'plugin',
visitor: {
// eslint-disable-next-line deprecation/deprecation
Program(node: AST.Program) {
assert.step(node.type);
},
Expand Down

0 comments on commit 84ef91e

Please sign in to comment.