angular-three-plugin 4.1.1 → 4.2.0
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/package.json +53 -53
- package/src/versions.d.ts +2 -2
- package/src/versions.js +2 -2
package/package.json
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
2
|
+
"name": "angular-three-plugin",
|
|
3
|
+
"version": "4.2.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"type": "commonjs",
|
|
8
|
+
"main": "./src/index.js",
|
|
9
|
+
"types": "./src/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
"./package.json": "./package.json",
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./src/index.d.ts",
|
|
14
|
+
"default": "./src/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./generators": {
|
|
17
|
+
"types": "./src/generators/index.d.ts",
|
|
18
|
+
"default": "./src/generators/index.js"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@nx/devkit": "^21.0.0",
|
|
23
|
+
"@rosskevin/gltfjsx": "^7.0.0",
|
|
24
|
+
"node-three-gltf": "^2.0.0",
|
|
25
|
+
"nx": "^21.0.0",
|
|
26
|
+
"ts-morph": "^25.0.0",
|
|
27
|
+
"tslib": "^2.3.0"
|
|
28
|
+
},
|
|
29
|
+
"generators": "./generators.json",
|
|
30
|
+
"schematics": "./generators.json",
|
|
31
|
+
"nx-migrations": {
|
|
32
|
+
"migrations": "./migrations.json",
|
|
33
|
+
"packageGroup": [
|
|
34
|
+
"angular-three-plugin",
|
|
35
|
+
"angular-three-soba",
|
|
36
|
+
"angular-three-postprocessing",
|
|
37
|
+
"angular-three-cannon",
|
|
38
|
+
"angular-three-rapier",
|
|
39
|
+
"angular-three-tweakpane",
|
|
40
|
+
"angular-three-theatre"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"ng-update": {
|
|
44
|
+
"migrations": "./migrations.json",
|
|
45
|
+
"packageGroup": [
|
|
46
|
+
"angular-three-plugin",
|
|
47
|
+
"angular-three-soba",
|
|
48
|
+
"angular-three-postprocessing",
|
|
49
|
+
"angular-three-cannon",
|
|
50
|
+
"angular-three-rapier",
|
|
51
|
+
"angular-three-tweakpane",
|
|
52
|
+
"angular-three-theatre"
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
55
|
}
|
package/src/versions.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/** Default version of angular-three to install */
|
|
2
2
|
export declare const ANGULAR_THREE_VERSION = "^4.0.0";
|
|
3
3
|
/** Default version of three to install */
|
|
4
|
-
export declare const THREE_VERSION = "^0.
|
|
4
|
+
export declare const THREE_VERSION = "^0.182.0";
|
|
5
5
|
/** Default version of @types/three to install */
|
|
6
|
-
export declare const THREE_TYPE_VERSION = "^0.
|
|
6
|
+
export declare const THREE_TYPE_VERSION = "^0.182.0";
|
|
7
7
|
/** Default version of ngxtension to install */
|
|
8
8
|
export declare const NGXTENSION_VERSION = "^7.0.0";
|
|
9
9
|
/**
|
package/src/versions.js
CHANGED
|
@@ -4,9 +4,9 @@ exports.PEER_DEPENDENCIES = exports.NGXTENSION_VERSION = exports.THREE_TYPE_VERS
|
|
|
4
4
|
/** Default version of angular-three to install */
|
|
5
5
|
exports.ANGULAR_THREE_VERSION = '^4.0.0';
|
|
6
6
|
/** Default version of three to install */
|
|
7
|
-
exports.THREE_VERSION = '^0.
|
|
7
|
+
exports.THREE_VERSION = '^0.182.0';
|
|
8
8
|
/** Default version of @types/three to install */
|
|
9
|
-
exports.THREE_TYPE_VERSION = '^0.
|
|
9
|
+
exports.THREE_TYPE_VERSION = '^0.182.0';
|
|
10
10
|
/** Default version of ngxtension to install */
|
|
11
11
|
exports.NGXTENSION_VERSION = '^7.0.0';
|
|
12
12
|
/**
|