Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumping to include js extension? #15

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"engines": {
"node": ">=16"
},
"version": "3.0.0",
"version": "3.0.1",
"type": "module",
"description": "A GLSL ES 1.0 and 3.0 parser and preprocessor that can preserve whitespace and comments",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/parser/glsl-grammar.pegjs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
// This require() without a file extension is an intentional hack. For local
// development, this will find the TypeScript file grammar.ts. When publihsed
// to npm, it will find the compiled Javascript file grammar.js.
} = require('./grammar');
} = require('./grammar.js');
}}

// Local parser code, unique to each invocation of the parser
Expand Down
Loading