babylonjs-accessibility 6.8.1 → 6.9.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/.npmignore ADDED
@@ -0,0 +1,5 @@
1
+ src
2
+ config.json
3
+ tsconfig*.*
4
+ .npmignore
5
+ webpack*.*
package/config.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "declarationLibs": ["@tools/accessibility"],
3
+ "devPackageName": "accessibility",
4
+ "filename": "babylon.accessibility.module.d.ts",
5
+ "outputDirectory": "./"
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-accessibility",
3
- "version": "6.8.1",
3
+ "version": "6.9.0",
4
4
  "main": "babylon.accessibility.max.js",
5
5
  "types": "babylon.accessibility.module.d.ts",
6
6
  "files": [
@@ -14,8 +14,8 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.*"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^6.8.1",
18
- "babylonjs-gui": "^6.8.1"
17
+ "babylonjs": "^6.9.0",
18
+ "babylonjs-gui": "^6.9.0"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@dev/build-tools": "1.0.0",
package/src/index.ts ADDED
@@ -0,0 +1,3 @@
1
+ import * as accessibility from "accessibility/legacy/legacy";
2
+ export { accessibility };
3
+ export default accessibility;
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "../../../../tsconfig.build.json",
3
+
4
+ "compilerOptions": {
5
+ "outDir": "./dist",
6
+ "rootDir": "./src",
7
+ "declaration": false,
8
+ },
9
+ "include": ["./src/**/*"]
10
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,3 @@
1
+ {
2
+ "extends": "../../../../tsconfig.json"
3
+ }
@@ -0,0 +1,14 @@
1
+ const path = require("path");
2
+ const commonConfigGenerator = require("@dev/build-tools").webpackTools.commonUMDWebpackConfiguration;
3
+
4
+ module.exports = (env) => {
5
+ const commonConfig = commonConfigGenerator({
6
+ mode: env.production ? "production" : "development",
7
+ devPackageName: "accessibility",
8
+ devPackageAliasPath: `../../../tools/accessibility/dist`,
9
+ namespace: "ACCESSIBILITY",
10
+ outputPath: path.resolve(__dirname),
11
+ maxMode: true,
12
+ });
13
+ return commonConfig;
14
+ };