Skip to content

Commit 59e5a3f

Browse files
committed
Addressed Copilot suggestion
Signed-off-by: Ilya Boyandin <ilyabo@gmail.com>
1 parent ece0434 commit 59e5a3f

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

src/duckdb/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"require": "./dist/components/index.js"
1919
},
2020
"./table": {
21-
"types": "./dist/table/duckdb-table-utils.d.ts",
22-
"import": "./dist/table/duckdb-table-utils.js",
23-
"require": "./dist/table/duckdb-table-utils.js"
21+
"types": "./dist/table/index.d.ts",
22+
"import": "./dist/table/index.js",
23+
"require": "./dist/table/index.js"
2424
}
2525
},
2626
"keywords": [
@@ -35,7 +35,7 @@
3535
"build:umd": "NODE_OPTIONS=--openssl-legacy-provider webpack --config ./webpack/umd.js --progress --env.prod",
3636
"build:types": "tsc --project ./tsconfig.production.json",
3737
"prepublishOnly": "babel-node ../../scripts/license-header/bin --license ../../FILE-HEADER && yarn build && yarn build:types",
38-
"stab": "mkdir -p dist/components dist/table && echo \"export * from '../src';\" > dist/index.js && echo \"export * from '../../src/components';\" > dist/components/index.js && echo \"export * from '../../src/table/duckdb-table-utils';\" > dist/table/duckdb-table-utils.js"
38+
"stab": "mkdir -p dist/components dist/table && echo \"export * from '../src';\" > dist/index.js && echo \"export * from '../../src/components';\" > dist/components/index.js && echo \"export * from '../../src/table';\" > dist/table/index.js"
3939
},
4040
"files": [
4141
"dist",

src/duckdb/src/table/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright contributors to the kepler.gl project
3+
4+
export * from './duckdb-table-utils';
5+

0 commit comments

Comments
 (0)