@hpcc-js/phosphor 3.1.0 → 3.2.1
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 +9997 -769
- package/dist/index.js.map +1 -7
- package/dist/index.umd.cjs +68 -0
- package/dist/index.umd.cjs.map +1 -0
- package/package.json +11 -9
- package/src/__package__.ts +1 -1
- package/types/__package__.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/phosphor",
|
|
3
|
-
"version": "3.1
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "hpcc-js - Viz Phosphor",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"main": "./dist/index.umd.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
6
8
|
"exports": {
|
|
7
9
|
".": {
|
|
8
10
|
"types": "./types/index.d.ts",
|
|
9
|
-
"
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/index.umd.cjs"
|
|
10
13
|
},
|
|
11
14
|
"./dist/*": "./dist/*"
|
|
12
15
|
},
|
|
13
|
-
"
|
|
14
|
-
"browser": "./dist/index.js",
|
|
16
|
+
"browser": "./dist/index.umd.cjs",
|
|
15
17
|
"types": "./types/index.d.ts",
|
|
16
18
|
"files": [
|
|
17
19
|
"dist/*",
|
|
@@ -20,8 +22,8 @@
|
|
|
20
22
|
],
|
|
21
23
|
"scripts": {
|
|
22
24
|
"clean": "rimraf --glob lib* types dist *.tsbuildinfo .turbo",
|
|
23
|
-
"bundle": "
|
|
24
|
-
"bundle-watch": "
|
|
25
|
+
"bundle": "vite build",
|
|
26
|
+
"bundle-watch": "vite --port 5516",
|
|
25
27
|
"gen-types": "tsc --project tsconfig.json",
|
|
26
28
|
"gen-types-watch": "npm run gen-types -- --watch",
|
|
27
29
|
"build": "run-p gen-types bundle",
|
|
@@ -35,10 +37,10 @@
|
|
|
35
37
|
"update-major": "npx --yes npm-check-updates -u"
|
|
36
38
|
},
|
|
37
39
|
"dependencies": {
|
|
38
|
-
"@hpcc-js/common": "^3.
|
|
40
|
+
"@hpcc-js/common": "^3.3.1"
|
|
39
41
|
},
|
|
40
42
|
"devDependencies": {
|
|
41
|
-
"@hpcc-js/esbuild-plugins": "^1.
|
|
43
|
+
"@hpcc-js/esbuild-plugins": "^1.4.1",
|
|
42
44
|
"@lumino/algorithm": "1.9.2",
|
|
43
45
|
"@lumino/commands": "1.21.1",
|
|
44
46
|
"@lumino/messaging": "1.10.3",
|
|
@@ -55,5 +57,5 @@
|
|
|
55
57
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
56
58
|
},
|
|
57
59
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
58
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "521692e7cfd01c274d5cfff0c54e79d1686d3dd6"
|
|
59
61
|
}
|
package/src/__package__.ts
CHANGED
package/types/__package__.d.ts
CHANGED