From 31469478c7a744e67f3a9b41517d521f51c8fef1 Mon Sep 17 00:00:00 2001 From: Andrew Ray Date: Wed, 3 Apr 2024 19:23:37 -0700 Subject: [PATCH] Bumping to include js extension? --- package.json | 2 +- src/parser/glsl-grammar.pegjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6451db5..736b541 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/parser/glsl-grammar.pegjs b/src/parser/glsl-grammar.pegjs index 5594657..b507ea9 100644 --- a/src/parser/glsl-grammar.pegjs +++ b/src/parser/glsl-grammar.pegjs @@ -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