Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

famous

Package Overview
Dependencies
Maintainers
3
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

famous - npm Package Compare versions

Comparing version 0.6.1 to 0.6.2

11

CHANGELOG.md
# Famous Rendering Engine Changelog
## 0.6.2
### Bug Fixes
- mount and show logic 8a916b91986cad8f704fbf4ecd5efced2474c093
### Testing and Tooling
- fix test for default geometry 6a33d097b7876fa47fe09a8560224b1a7906a105
## 0.6.1

@@ -4,0 +15,0 @@

5

core/Dispatch.js

@@ -146,4 +146,6 @@ /**

if (parent.isMounted()) node._setMounted(true, path);
if (parent.isShown()) node._setShown(true);
if (parent.isMounted()) {
node._setMounted(true, path);
node._setParent(parent);

@@ -162,3 +164,2 @@ if (node.onMount) node.onMount(path);

if (parent.isShown()) {
node._setShown(true);
if (node.onShow) node.onShow();

@@ -165,0 +166,0 @@ for (i = 0, len = components.length ; i < len ; i++)

2

package.json
{
"name": "famous",
"version": "0.6.1",
"version": "0.6.2",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -225,4 +225,4 @@ /**

t.false(mesh.getGeometry(),
'should not return a geometry if none has been set');
t.true(mesh.getGeometry(),
'should return a default geometry of plane if none was set');

@@ -229,0 +229,0 @@ mesh.setGeometry('Box');

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc