dotdata_widgets 1.3.0-b3.dev9 → 1.3.0-b4.dev6

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.
Files changed (2) hide show
  1. package/dist/index.js +65 -15
  2. package/package.json +13 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dotdata_widgets",
3
- "version": "1.3.0-b3.dev9",
3
+ "version": "1.3.0-b4.dev6",
4
4
  "description": "A dotdata widget",
5
5
  "keywords": [
6
6
  "dotdata",
@@ -26,13 +26,16 @@
26
26
  "url": "https://github.com/ramencloud/dotdata-core"
27
27
  },
28
28
  "scripts": {
29
- "build": "npm run build:nbextension && npm run build:labextension && npm run build:package",
30
- "build:labextension": "npm run build:lib && jupyter labextension build . && touch dotdata_widgets/labextension/static/__init__.py && touch dotdata_widgets/labextension/__init__.py",
31
- "build:nbextension": "tsc -b ../../packages && webpack --mode=production --config webpack.config.js --config-name notebook-package notebook-entry-file",
32
- "build:package": "tsc -b ../../packages && webpack --mode=production --config webpack.config.js --config-name npm-package",
29
+ "build": "yarn run -T build:packages && yarn run nbextension && yarn run build:lib && yarn run labextension && yarn run package",
30
+ "build:labextension": "yarn run build:lib && yarn run labextension",
31
+ "build:nbextension": "yarn run -T build:packages && yarn run nbextension",
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
- "clean": "npm run clean:lib && npm run clean:nbextension && npm run clean:labextension",
35
+ "labextension": "jupyter labextension build . && touch dotdata_widgets/labextension/static/__init__.py && touch dotdata_widgets/labextension/__init__.py",
36
+ "nbextension": "webpack --mode=production --config webpack.config.js --config-name notebook-package notebook-entry-file",
37
+ "package": "webpack --mode=production --config webpack.config.js --config-name npm-package",
38
+ "clean": "yarn run clean:lib && yarn run clean:nbextension && yarn run clean:labextension",
36
39
  "clean:lib": "yarn run -T rimraf lib && yarn run -T rimraf tsconfig.tsbuildinfo && yarn run -T rimraf dist",
37
40
  "clean:labextension": "yarn run -T rimraf dotdata_widgets/labextension",
38
41
  "clean:nbextension": "yarn run -T rimraf dotdata_widgets/nbextension/*.js.* && yarn run -T rimraf dotdata_widgets/nbextension/*.js",
@@ -43,22 +46,21 @@
43
46
  "test": "yarn build:test && vitest run",
44
47
  "test:watch": "concurrently --hide \"yarn build:test -w\" --handle-input --raw \"vitest watch\" ",
45
48
  "format": "prettier --write \"src/**/*.ts\"",
46
- "watch": "npm run build:lib && npm-run-all -p 'watch:*'",
49
+ "watch": "yarn run build:lib && npm-run-all -p 'watch:*'",
47
50
  "watch:lib": "concurrently \"tsc -b -w\" \"tsc-alias -w\"",
48
- "watch:labextension": "jupyter labextension build --development True . && jupyter labextension watch .",
49
- "storybook": "storybook dev -p 6006",
50
- "build-storybook": "storybook build"
51
+ "watch:labextension": "jupyter labextension build --development True . && jupyter labextension watch ."
51
52
  },
52
53
  "dependencies": {
53
54
  "@dotdata/adb": "workspace:^",
54
55
  "@dotdata/check-data": "workspace:^",
55
56
  "@dotdata/components": "workspace:^",
56
- "@dotdata/css": "workspace:^",
57
+ "@dotdata/configuration-wizard": "workspace:^",
57
58
  "@dotdata/feature-leaderboard": "workspace:^",
58
59
  "@dotdata/feature-pipeline": "workspace:^",
59
60
  "@dotdata/feature-selector": "workspace:^",
60
61
  "@dotdata/feature-space": "workspace:^",
61
62
  "@dotdata/fixtures": "workspace:^",
63
+ "@dotdata/ipywidget-bed": "workspace:^",
62
64
  "@dotdata/utils": "workspace:^",
63
65
  "@emotion/react": "^11.11.4",
64
66
  "@emotion/styled": "^11.11.0",