Skip to content

Commit fb60063

Browse files
Bump aframe-master dist/ builds. (c22a5dc...ff1d9b6)
1 parent ff1d9b6 commit fb60063

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

dist/aframe-master.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28183,8 +28183,9 @@ function isLandscape() {
2818328183
* Check if running in a browser or spoofed browser (bundler).
2818428184
* We need to check a node api that isn't mocked on either side.
2818528185
* `require` and `module.exports` are mocked in browser by bundlers.
28186+
* process is polyfilled with process.browser true by Next.js with "use client".
2818628187
*/
28187-
var isBrowserEnvironment = typeof process === 'undefined';
28188+
var isBrowserEnvironment = typeof process === 'undefined' || process.browser === true;
2818828189

2818928190
/**
2819028191
* Check if running in node on the server.
@@ -42907,7 +42908,7 @@ if (_utils_index_js__WEBPACK_IMPORTED_MODULE_16__.device.isBrowserEnvironment) {
4290742908
__webpack_require__(/*! ./style/aframe.css */ "./src/style/aframe.css");
4290842909
__webpack_require__(/*! ./style/rStats.css */ "./src/style/rStats.css");
4290942910
}
42910-
console.log('A-Frame Version: 1.7.0 (Date 2025-03-03, Commit #53c5ca03)');
42911+
console.log('A-Frame Version: 1.7.0 (Date 2025-03-05, Commit #ff1d9b63)');
4291142912
console.log('THREE Version (https://github.com/supermedium/three.js):', _lib_three_js__WEBPACK_IMPORTED_MODULE_1__["default"].REVISION);
4291242913

4291342914
// Wait for ready state, unless user asynchronously initializes A-Frame.

dist/aframe-master.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/aframe-master.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/aframe-master.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/aframe-master.module.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/aframe-master.module.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ if (utils.device.isBrowserEnvironment) {
5959
require('./style/rStats.css');
6060
}
6161

62-
console.log('A-Frame Version: 1.7.0 (Date 2025-03-03, Commit #53c5ca03)');
62+
console.log('A-Frame Version: 1.7.0 (Date 2025-03-05, Commit #ff1d9b63)');
6363
console.log('THREE Version (https://github.com/supermedium/three.js):',
6464
THREE.REVISION);
6565

0 commit comments

Comments
 (0)