dotdata_widgets 1.5.0-b2.dev4.g1246889a → 1.5.0-b2.dev44
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 +15 -15
- package/package.json +14 -10
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.dev44",
|
|
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",
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"lint:check": "eslint . --ext .ts,.tsx",
|
|
44
44
|
"prepack": "yarn build:package",
|
|
45
45
|
"npm-publish": "npm publish",
|
|
46
|
-
"test": "yarn build:test &&
|
|
47
|
-
"test:watch": "concurrently
|
|
46
|
+
"test": "yarn build:test && yarn run -T test apps/dotdata_widgets",
|
|
47
|
+
"test:watch": "yarn run -T concurrently \"yarn build:test -w\" \"yarn run -T test:watch apps/dotdata_widgets\"",
|
|
48
48
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
49
49
|
"watch": "yarn run build:lib && npm-run-all -p 'watch:*'",
|
|
50
|
-
"watch:lib": "concurrently \"tsc -b -w\" \"tsc-alias -w\"",
|
|
51
|
-
"watch:labextension": "jupyter
|
|
50
|
+
"watch:lib": "yarn run -T concurrently \"tsc -b -w\" \"tsc-alias -w\"",
|
|
51
|
+
"watch:labextension": "jupyter-labextension build --development True . && jupyter-labextension watch ."
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@dotdata/adb": "workspace:^",
|
|
@@ -82,7 +82,6 @@
|
|
|
82
82
|
"@jupyterlab/builder": "^3.6.1",
|
|
83
83
|
"@types/webpack-env": "^1.18.0",
|
|
84
84
|
"acorn": "^8.8.2",
|
|
85
|
-
"concurrently": "^8.2.2",
|
|
86
85
|
"css-loader": "^6.7.3",
|
|
87
86
|
"file-loader": "^6.2.0",
|
|
88
87
|
"fs-extra": "^11.1.0",
|
|
@@ -96,7 +95,6 @@
|
|
|
96
95
|
"tsc-alias": "^1.8.8",
|
|
97
96
|
"tsconfig-paths-webpack-plugin": "^4.0.0",
|
|
98
97
|
"typescript": "^5.6.2",
|
|
99
|
-
"vitest": "^1.6.1",
|
|
100
98
|
"webpack": "^5.69.1",
|
|
101
99
|
"webpack-cli": "^5.0.1"
|
|
102
100
|
},
|
|
@@ -108,8 +106,14 @@
|
|
|
108
106
|
"bundled": false,
|
|
109
107
|
"singleton": true
|
|
110
108
|
},
|
|
111
|
-
"react":
|
|
112
|
-
|
|
109
|
+
"react": {
|
|
110
|
+
"bundled": true,
|
|
111
|
+
"singleton": true
|
|
112
|
+
},
|
|
113
|
+
"react-dom": {
|
|
114
|
+
"bundled": true,
|
|
115
|
+
"singleton": true
|
|
116
|
+
}
|
|
113
117
|
}
|
|
114
118
|
}
|
|
115
119
|
}
|