Skip to content

Commit

Permalink
Remove incorrect constants re-export from compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
wycats committed Nov 3, 2024
1 parent d65631b commit 5636a8f
Show file tree
Hide file tree
Showing 4 changed files with 8,596 additions and 11,135 deletions.
1 change: 0 additions & 1 deletion packages/@glimmer/compiler/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export {
} from './lib/builder/builder';
export { type BuilderStatement } from './lib/builder/builder-interface';
export { defaultId, precompile, precompileJSON, type PrecompileOptions } from './lib/compiler';
export * from '@glimmer/constants';

// exported only for tests!
export { default as WireFormatDebugger } from './lib/wire-format-debug';
3 changes: 1 addition & 2 deletions packages/@glimmer/compiler/test/compiler-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ import type {
SerializedTemplateWithLazyBlock,
} from '@glimmer/interfaces';
import {
BUILDER_APPEND,
BUILDER_CONCAT,
buildStatements,
c,
NEWLINE,
Expand All @@ -18,6 +16,7 @@ import {
unicode,
WireFormatDebugger,
} from '@glimmer/compiler';
import { BUILDER_APPEND, BUILDER_CONCAT } from '@glimmer/constants';
import { assign, strip } from '@glimmer/util';

QUnit.module('@glimmer/compiler - compiling source to wire format');
Expand Down
3 changes: 3 additions & 0 deletions packages/@glimmer/compiler/test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@
"@glimmer/interfaces": "workspace:*",
"@glimmer/syntax": "workspace:*",
"@glimmer/util": "workspace:*"
},
"devDependencies": {
"@glimmer/constants": "workspace:*"
}
}
Loading

0 comments on commit 5636a8f

Please sign in to comment.