dotdata_widgets 1.5.0-b2.dev45.g242a9ee1 → 1.5.0-b2.dev6.gd1526c49

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 +14 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dotdata_widgets",
3
- "version": "1.5.0-b2.dev45.g242a9ee1",
3
+ "version": "1.5.0-b2.dev6.gd1526c49",
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 && 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\"",
46
+ "test": "yarn build:test && vitest run",
47
+ "test:watch": "concurrently --hide \"yarn build:test -w\" --handle-input --raw \"vitest watch\" ",
48
48
  "format": "prettier --write \"src/**/*.ts\"",
49
49
  "watch": "yarn run build:lib && npm-run-all -p 'watch:*'",
50
- "watch:lib": "yarn run -T concurrently \"tsc -b -w\" \"tsc-alias -w\"",
50
+ "watch:lib": "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,6 +82,7 @@
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",
85
86
  "css-loader": "^6.7.3",
86
87
  "file-loader": "^6.2.0",
87
88
  "fs-extra": "^11.1.0",
@@ -95,6 +96,7 @@
95
96
  "tsc-alias": "^1.8.8",
96
97
  "tsconfig-paths-webpack-plugin": "^4.0.0",
97
98
  "typescript": "^5.6.2",
99
+ "vitest": "^1.6.1",
98
100
  "webpack": "^5.69.1",
99
101
  "webpack-cli": "^5.0.1"
100
102
  },
@@ -106,8 +108,14 @@
106
108
  "bundled": false,
107
109
  "singleton": true
108
110
  },
109
- "react": false,
110
- "react-dom": false
111
+ "react": {
112
+ "bundled": true,
113
+ "singleton": true
114
+ },
115
+ "react-dom": {
116
+ "bundled": true,
117
+ "singleton": true
118
+ }
111
119
  }
112
120
  }
113
121
  }