Skip to content

Commit bc5cc7a

Browse files
Export all modules for AMD build (#20)
1 parent d2d9d64 commit bc5cc7a

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tiledb-inc/pybabylonjs",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "BabylonJS widget",
55
"keywords": [
66
"jupyter",

pybabylonjs/_frontend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
"""
1010

1111
module_name = "@tiledb-inc/pybabylonjs"
12-
module_version = ">=1.0.3"
12+
module_version = ">=1.0.4"

src/embed.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './version';
2+
export * from './widget';

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports = [
2828
* the custom widget embedder.
2929
*/
3030
{
31-
entry: './src/index.ts',
31+
entry: './src/embed.ts',
3232
output: {
3333
filename: 'index.js',
3434
path: path.resolve(__dirname, 'dist'),

0 commit comments

Comments
 (0)