dotdata_widgets 1.5.0-b2.dev3 → 1.5.0-b2.dev30.g4adf60c0

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 +15 -15
  2. package/package.json +12 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dotdata_widgets",
3
- "version": "1.5.0-b2.dev3",
3
+ "version": "1.5.0-b2.dev30.g4adf60c0",
4
4
  "description": "A dotdata widget",
5
5
  "keywords": [
6
6
  "dotdata",
@@ -43,11 +43,11 @@
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 && vitest run",
47
- "test:watch": "concurrently --hide \"yarn build:test -w\" --handle-input --raw \"vitest watch\" ",
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\"",
50
+ "watch:lib": "yarn run -T concurrently \"tsc -b -w\" \"tsc-alias -w\"",
51
51
  "watch:labextension": "jupyter labextension build --development True . && jupyter labextension watch ."
52
52
  },
53
53
  "dependencies": {
@@ -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": false,
112
- "react-dom": false
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
  }