New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

electrum-compiler

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

electrum-compiler - npm Package Compare versions

Comparing version

to
1.7.0

8

lib/compiler.js

@@ -56,3 +56,3 @@ 'use strict';

key: 'build',
value: function build(name, source, locals) {
value: function build(name, source, locals, more) {
var Electrum = imports.Electrum;

@@ -67,2 +67,6 @@ var React = imports.React;

if (typeof more === 'undefined') {
more = '{}';
}
try {

@@ -73,3 +77,3 @@ // In this scope, we need Electrum, React, components and sourceVar.

const input = `${ sourceVar }Electrum.wrap ("${ name }", (
${ source }));`;
${ source }), (${ more }));`;
const output = this.transform(input);

@@ -76,0 +80,0 @@ const result = eval(output); // jshint ignore:line

{
"name": "electrum-compiler",
"version": "1.6.0",
"version": "1.7.0",
"description": "Run-time compiler for Electrum-enabled React components.",

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

@@ -37,2 +37,5 @@ # electrum-compiler

pairs found in `locals` into the compilation context.
* `build(name, input, locals, more)` → same as above, `more` represents
additional source code which will be provided to `Electrum.wrap()` as the
`more` argument (it can be used to bind the component with styles).

@@ -39,0 +42,0 @@

@@ -33,3 +33,3 @@ 'use strict';

build (name, source, locals) {
build (name, source, locals, more) {
var Electrum = imports.Electrum;

@@ -48,2 +48,6 @@ var React = imports.React;

if (typeof (more) === 'undefined') {
more = '{}';
}
try {

@@ -54,3 +58,3 @@ // In this scope, we need Electrum, React, components and sourceVar.

const input = `${sourceVar}Electrum.wrap ("${name}", (
${source}));`;
${source}), (${more}));`;
const output = this.transform (input);

@@ -57,0 +61,0 @@ const result = eval (output); // jshint ignore:line