Skip to content

Commit 021f566

Browse files
committed
chore: make three dependency flexible
1 parent fdbc914 commit 021f566

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

packages/core/package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@thatopen/components",
33
"description": "Collection of core functionalities to author BIM apps.",
4-
"version": "2.4.10",
4+
"version": "2.4.11",
55
"author": "That Open Company",
66
"contributors": [
77
"Antonio Gonzalez Viegas (https://github.com/agviegas)",
@@ -31,8 +31,7 @@
3131
"test": "jest",
3232
"build": "tsc --p ./tsconfig-build.json && vite build",
3333
"prepublishOnly": "node ./resources/updateComponentsVersion.mjs && yarn build",
34-
"publish-repo": "npm publish",
35-
"publish-alpha": "npm publish --tag alpha"
34+
"publish-repo": "npm publish"
3635
},
3736
"publishConfig": {
3837
"access": "public"
@@ -47,15 +46,15 @@
4746
"web-ifc": "0.0.68"
4847
},
4948
"dependencies": {
50-
"camera-controls": "2.10.1",
49+
"camera-controls": "2.9.0",
5150
"earcut": "2.2.4",
5251
"fast-xml-parser": "4.4.1",
5352
"jszip": "3.10.1",
5453
"three-mesh-bvh": "0.7.0"
5554
},
5655
"peerDependencies": {
5756
"@thatopen/fragments": "~3.0.0",
58-
"three": "^0.175.0",
57+
"three": ">=0.175.0",
5958
"web-ifc": "0.0.68"
6059
}
6160
}

packages/core/src/core/Components/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class Components implements Disposable {
1414
/**
1515
* The version of the @thatopen/components library.
1616
*/
17-
static readonly release = "2.4.10";
17+
static readonly release = "2.4.11";
1818

1919
/** {@link Disposable.onDisposed} */
2020
readonly onDisposed = new Event<void>();

packages/front/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@thatopen/components-front",
33
"description": "Collection of frontend tools to author BIM apps.",
4-
"version": "2.4.10",
4+
"version": "2.4.11",
55
"author": "That Open Company",
66
"contributors": [
77
"Antonio Gonzalez Viegas (https://github.com/agviegas)",
@@ -30,12 +30,11 @@
3030
"test": "jest",
3131
"build": "tsc --p ./tsconfig-build.json && vite build",
3232
"prepublishOnly": "yarn build",
33-
"publish-repo": "npm publish",
34-
"publish-alpha": "npm publish --tag alpha"
33+
"publish-repo": "npm publish"
3534
},
3635
"peerDependencies": {
3736
"@thatopen/fragments": "~3.0.0",
38-
"three": "^0.175.0",
37+
"three": ">=0.175.0",
3938
"web-ifc": "0.0.68"
4039
},
4140
"devDependencies": {

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ __metadata:
733733
web-ifc: 0.0.68
734734
peerDependencies:
735735
"@thatopen/fragments": ~3.0.0
736-
three: ^0.175.0
736+
three: ">=0.175.0"
737737
web-ifc: 0.0.68
738738
languageName: unknown
739739
linkType: soft
@@ -746,7 +746,7 @@ __metadata:
746746
"@thatopen/ui": ~2.4.0
747747
"@types/earcut": 2.1.4
748748
"@types/three": 0.175.0
749-
camera-controls: 2.10.1
749+
camera-controls: 2.9.0
750750
earcut: 2.2.4
751751
fast-xml-parser: 4.4.1
752752
jszip: 3.10.1
@@ -756,7 +756,7 @@ __metadata:
756756
web-ifc: 0.0.68
757757
peerDependencies:
758758
"@thatopen/fragments": ~3.0.0
759-
three: ^0.175.0
759+
three: ">=0.175.0"
760760
web-ifc: 0.0.68
761761
languageName: unknown
762762
linkType: soft
@@ -1411,7 +1411,7 @@ __metadata:
14111411
languageName: node
14121412
linkType: hard
14131413

1414-
"camera-controls@npm:^2.9.0":
1414+
"camera-controls@npm:2.9.0, camera-controls@npm:^2.9.0":
14151415
version: 2.9.0
14161416
resolution: "camera-controls@npm:2.9.0"
14171417
peerDependencies:

0 commit comments

Comments
 (0)