babylonjs-accessibility 9.4.0 → 9.5.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-accessibility",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.5.0",
|
|
4
4
|
"main": "babylon.accessibility.js",
|
|
5
5
|
"types": "babylon.accessibility.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
],
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "npm run clean && npm run build:prod && npm run build:declaration",
|
|
11
|
-
"build:dev": "
|
|
12
|
-
"build:prod": "
|
|
11
|
+
"build:dev": "rollup -c rollup.config.umd.mjs",
|
|
12
|
+
"build:prod": "rollup -c rollup.config.umd.mjs --environment ROLLUP_MODE:production",
|
|
13
13
|
"build:declaration": "build-tools -c pud --config ./config.json",
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "9.
|
|
18
|
-
"babylonjs-gui": "9.
|
|
17
|
+
"babylonjs": "9.5.0",
|
|
18
|
+
"babylonjs-gui": "9.5.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@dev/build-tools": "1.0.0",
|
|
@@ -26,12 +26,7 @@
|
|
|
26
26
|
"css-loader": "^7.1.0",
|
|
27
27
|
"react": "^18.2.0",
|
|
28
28
|
"react-dom": "^18.2.0",
|
|
29
|
-
"sass-loader": "^16.0.0"
|
|
30
|
-
"source-map-loader": "^4.0.0",
|
|
31
|
-
"ts-loader": "^9.2.6",
|
|
32
|
-
"webpack": "^5.103.0",
|
|
33
|
-
"webpack-cli": "6.0.1",
|
|
34
|
-
"webpack-merge": "^5.8.0"
|
|
29
|
+
"sass-loader": "^16.0.0"
|
|
35
30
|
},
|
|
36
31
|
"keywords": [
|
|
37
32
|
"3D",
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { commonUMDRollupConfiguration } from "../../rollupUMDHelper.mjs";
|
|
2
|
+
import path from "path";
|
|
3
|
+
|
|
4
|
+
const mode = process.env.ROLLUP_MODE === "production" ? "production" : "development";
|
|
5
|
+
|
|
6
|
+
export default commonUMDRollupConfiguration({
|
|
7
|
+
mode,
|
|
8
|
+
devPackageName: "accessibility",
|
|
9
|
+
devPackageAliasPath: "../../../tools/accessibility/dist",
|
|
10
|
+
namespace: "ACCESSIBILITY",
|
|
11
|
+
outputPath: path.resolve("."),
|
|
12
|
+
maxMode: true,
|
|
13
|
+
minToMax: true,
|
|
14
|
+
});
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license React
|
|
3
|
-
* react-dom.production.min.js
|
|
4
|
-
*
|
|
5
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
6
|
-
*
|
|
7
|
-
* This source code is licensed under the MIT license found in the
|
|
8
|
-
* LICENSE file in the root directory of this source tree.
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* @license React
|
|
13
|
-
* react-jsx-runtime.production.min.js
|
|
14
|
-
*
|
|
15
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
16
|
-
*
|
|
17
|
-
* This source code is licensed under the MIT license found in the
|
|
18
|
-
* LICENSE file in the root directory of this source tree.
|
|
19
|
-
*/
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* @license React
|
|
23
|
-
* react.production.min.js
|
|
24
|
-
*
|
|
25
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
26
|
-
*
|
|
27
|
-
* This source code is licensed under the MIT license found in the
|
|
28
|
-
* LICENSE file in the root directory of this source tree.
|
|
29
|
-
*/
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
* @license React
|
|
33
|
-
* scheduler.production.min.js
|
|
34
|
-
*
|
|
35
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
36
|
-
*
|
|
37
|
-
* This source code is licensed under the MIT license found in the
|
|
38
|
-
* LICENSE file in the root directory of this source tree.
|
|
39
|
-
*/
|