Skip to content

Commit

Permalink
chore: use relative path includes
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku committed Mar 6, 2024
1 parent f778d44 commit fb7e315
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src/feel.grammar
Original file line number Diff line number Diff line change
Expand Up @@ -406,18 +406,18 @@ commaSep<Expr> {
"" | Expr ("," Expr)*
}

@context variableTracker from "./tokens"
@context variableTracker from "./tokens.js"

@external tokens propertyIdentifiers from "./tokens" {
@external tokens propertyIdentifiers from "./tokens.js" {
propertyIdentifier[@export]
}

@external tokens identifiers from "./tokens" {
@external tokens identifiers from "./tokens.js" {
identifier[@export],
nameIdentifier[@export]
}

@external tokens insertSemicolon from "./tokens" {
@external tokens insertSemicolon from "./tokens.js" {
insertSemi
}

Expand Down Expand Up @@ -497,4 +497,4 @@ commaSep<Expr> {

@detectDelim

@external propSource feelHighlighting from "./highlight"
@external propSource feelHighlighting from "./highlight.js"
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export * from './parser';
export * from './parser.js';

export {
trackVariables,
normalizeContextKey,
VariableContext
} from './tokens';
} from './tokens.js';

0 comments on commit fb7e315

Please sign in to comment.