dotdata_widgets 1.5.0-b2.dev45.g242a9ee1 → 1.5.0-b2.dev48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +19 -19
- package/package.json +11 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dotdata_widgets",
|
|
3
|
-
"version": "1.5.0-b2.
|
|
3
|
+
"version": "1.5.0-b2.dev48",
|
|
4
4
|
"description": "A dotdata widget",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dotdata",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"build:package": "yarn run -T build:packages && yarn run package",
|
|
33
33
|
"build:lib": "tsc --build && tsc-alias",
|
|
34
34
|
"build:test": "tsc --build tsconfig.test.json",
|
|
35
|
-
"labextension": "jupyter
|
|
35
|
+
"labextension": "jupyter-labextension build . && touch dotdata_widgets/labextension/static/__init__.py && touch dotdata_widgets/labextension/__init__.py",
|
|
36
36
|
"nbextension": "webpack --mode=production --config webpack.config.js --config-name notebook-package notebook-entry-file",
|
|
37
37
|
"package": "webpack --mode=production --config webpack.config.js --config-name npm-package",
|
|
38
38
|
"clean": "yarn run clean:lib && yarn run clean:nbextension && yarn run clean:labextension",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
49
49
|
"watch": "yarn run build:lib && npm-run-all -p 'watch:*'",
|
|
50
50
|
"watch:lib": "yarn run -T concurrently \"tsc -b -w\" \"tsc-alias -w\"",
|
|
51
|
-
"watch:labextension": "jupyter
|
|
51
|
+
"watch:labextension": "jupyter-labextension build --development True . && jupyter-labextension watch ."
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@dotdata/adb": "workspace:^",
|
|
@@ -106,8 +106,14 @@
|
|
|
106
106
|
"bundled": false,
|
|
107
107
|
"singleton": true
|
|
108
108
|
},
|
|
109
|
-
"react":
|
|
110
|
-
|
|
109
|
+
"react": {
|
|
110
|
+
"bundled": true,
|
|
111
|
+
"singleton": true
|
|
112
|
+
},
|
|
113
|
+
"react-dom": {
|
|
114
|
+
"bundled": true,
|
|
115
|
+
"singleton": true
|
|
116
|
+
}
|
|
111
117
|
}
|
|
112
118
|
}
|
|
113
119
|
}
|