@rhinostone/swig-core 2.0.0-alpha.3 → 2.0.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/engine.js +2 -2
- package/package.json +1 -1
package/lib/engine.js
CHANGED
|
@@ -177,8 +177,8 @@ exports.buildTemplateFunction = function (tokens, parents, options) {
|
|
|
177
177
|
*/
|
|
178
178
|
exports.install = function (self, frontend) {
|
|
179
179
|
var parser = frontend.parser,
|
|
180
|
-
tags = frontend.tags,
|
|
181
|
-
filters = frontend.filters,
|
|
180
|
+
tags = utils.extend({}, frontend.tags),
|
|
181
|
+
filters = utils.extend({}, frontend.filters),
|
|
182
182
|
validateOptions = frontend.validateOptions,
|
|
183
183
|
onCompileError = frontend.onCompileError;
|
|
184
184
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rhinostone/swig-core",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.4",
|
|
4
4
|
"description": "Shared IR, backend, and runtime for the @rhinostone/swig family of template engines. First publish at 2.0.0-alpha.3 — see @rhinostone/swig #T14 (Phase 1 carve).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"template",
|