electrum-compiler
Advanced tools
Comparing version
@@ -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 |
30075
1.36%494
1.23%108
2.86%