Skip to content

Commit ccfe0bb

Browse files
committed
Fix CICD
1 parent 7f3c1d8 commit ccfe0bb

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
**/*.min.js
1+
dist/**
22
src/alasqlparser.js

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"format": "bun --bun ./node_modules/.bin/biome format --write",
2828
"test-only": "bun test --bail",
2929
"test-browser": "bun test/browserTestRunner.js 7387",
30-
"build": "bun run format && sh build.sh",
30+
"build": "bun run format && ./build.sh",
3131
"install-g": "bun run build && npm uninstall alasql -g && npm install -g ./",
3232
"release": "yarn version",
3333
"jison": "bun run jison-only && bun run test",

test/test298.test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ const __dirname = typeof window === 'undefined' ? dirname(fileURLToPath(import.m
88
describe('Test 298 PLUG-IN TEST', () => {
99
test('1. CREATE DATABASE', done => {
1010
alasql('CREATE DATABASE test298;USE test298');
11+
delete alasql.yy.Echo;
12+
delete alasql.plugins.ECHO;
1113
done();
1214
});
1315

0 commit comments

Comments
 (0)