From b658a20e3bc2616b061a50f69fb0934f939ffce4 Mon Sep 17 00:00:00 2001 From: Andrew Ray Date: Sat, 27 Jan 2024 19:24:33 -0800 Subject: [PATCH] Build test --- build.sh | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 463a813..a8c68fa 100755 --- a/build.sh +++ b/build.sh @@ -11,6 +11,7 @@ npx tsc npx peggy --cache -o dist/parser/parser.js src/parser/glsl-grammar.pegjs # Manualy copy in the type definitions cp src/parser/parser.d.ts dist/parser/ +cp src/error.d.ts dist/ npx peggy --cache -o dist/preprocessor/preprocessor-parser.js src/preprocessor/preprocessor-grammar.pegjs cp src/preprocessor/preprocessor-parser.d.ts dist/preprocessor/preprocessor-parser.d.ts diff --git a/package.json b/package.json index 87e64be..aa460b7 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "engines": { "node": ">=16" }, - "version": "2.1.4", + "version": "2.1.5", "description": "A GLSL ES 1.0 and 3.0 parser and preprocessor that can preserve whitespace and comments", "scripts": { "prepare": "npm run build && ./prepublish.sh",