react-unity-webgl
Advanced tools
Comparing version 7.0.7 to 7.0.8
{ | ||
"name": "react-unity-webgl", | ||
"version": "7.0.7", | ||
"version": "7.0.8", | ||
"description": "React Unity WebGL provides an easy solution for embedding Unity WebGL builds in your React application, with two-way communication between your React and Unity application with advanced API's.", | ||
@@ -9,3 +9,4 @@ "main": "source/index.js", | ||
"compile": "tsc", | ||
"prepublish": "npm run compile" | ||
"prepublish": "npm run compile", | ||
"test": "echo \"Use Test repo to run tests.\"" | ||
}, | ||
@@ -33,2 +34,2 @@ "repository": { | ||
} | ||
} | ||
} |
@@ -1,7 +0,6 @@ | ||
import IUnityConfig from "./interfaces/IUnityConfig"; | ||
import { UnityVersion } from "./enums/UnityVersion"; | ||
import UnityContent from "./UnityContent"; | ||
import Unity from "./components/Unity"; | ||
import { UnityVersion } from "./enums/UnityVersion"; | ||
export { IUnityConfig, UnityContent, UnityVersion }; | ||
export { UnityContent, UnityVersion }; | ||
export default Unity; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -6,8 +6,8 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var UnityVersion_1 = require("./enums/UnityVersion"); | ||
exports.UnityVersion = UnityVersion_1.UnityVersion; | ||
var UnityContent_1 = __importDefault(require("./UnityContent")); | ||
exports.UnityContent = UnityContent_1.default; | ||
var Unity_1 = __importDefault(require("./components/Unity")); | ||
var UnityVersion_1 = require("./enums/UnityVersion"); | ||
exports.UnityVersion = UnityVersion_1.UnityVersion; | ||
exports.default = Unity_1.default; | ||
//# sourceMappingURL=index.js.map |
@@ -1,7 +0,6 @@ | ||
import IUnityConfig from "./interfaces/IUnityConfig"; | ||
import { UnityVersion } from "./enums/UnityVersion"; | ||
import UnityContent from "./UnityContent"; | ||
import Unity from "./components/Unity"; | ||
import { UnityVersion } from "./enums/UnityVersion"; | ||
export { IUnityConfig, UnityContent, UnityVersion }; | ||
export { UnityContent, UnityVersion }; | ||
export default Unity; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
60872
1095