Socket
Socket
Sign inDemoInstall

cavalion-blocks

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cavalion-blocks - npm Package Compare versions

Comparing version 0.9.26 to 0.9.27

7

CHANGELOG.md

@@ -0,1 +1,8 @@

### 2022/02/07 - 0.9.27
- **blocks/Blocks**: getImplicitSourceFor(): emitting terminating semi-colon
- **blocks/Factory**: Now keeping track of the `implicit_sources` in such a manner that they can be reproduced correctly (eg. by vcl-comps://make/Build)
>> ![image](https://user-images.githubusercontent.com/686773/152897778-394043f0-b0b8-4afa-aa4e-4ebfe60fe466.png?2x)
### 2022/01/23 - 0.9.26

@@ -2,0 +9,0 @@ - Fix for `@factory` not being set correctly

2

package.json
{
"name": "cavalion-blocks",
"version": "0.9.26",
"version": "0.9.27",
"description": "`blocks-dot-js` `[].js`",

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

@@ -343,3 +343,3 @@ define(function(require) {

return String.format("[[\"" + uris.join("\", \"") + "\"]];");
return String.format("[[\"" + uris.join("\", \"") + "\"]]");
},

@@ -346,0 +346,0 @@

@@ -480,3 +480,4 @@ define(function(require) {

component['@factory'] = this;
// }
// 581

@@ -582,3 +583,11 @@ var properties = component.defineProperties(), property;

var source = Blocks.implicitSourceFor(name);
Factory.implicit_sources[sourceUri] = source;
var arr = Factory.implicit_sources[sourceUri];
if(Factory.implicit_sources[name]) debugger;
Factory.implicit_sources[name] = {
source: source,
sourceUri: sourceUri
};
instantiate(source);

@@ -585,0 +594,0 @@ });

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