Skip to content

Commit 9421875

Browse files
committed
js-core-1.3.1 - missed template function in enum
1 parent eea32dc commit 9421875

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

docs/package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@mdx-js/react": "3.1.0",
2121
"@monaco-editor/react": "4.6.0",
2222
"@nlighten/json-transform": "^1.3.0",
23-
"@nlighten/json-transform-core": "^1.3.0",
23+
"@nlighten/json-transform-core": "^1.3.1",
2424
"buffer": "^6.0.3",
2525
"clsx": "2.1.0",
2626
"crypto-browserify": "^3.12.1",

javascript/json-transform-core/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/json-transform-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nlighten/json-transform-core",
33
"description": "Core types and utilities for handling JSON transformers",
4-
"version": "1.3.0",
4+
"version": "1.3.1",
55
"main": "dist/json-transform-core.js",
66
"umd:main": "dist/json-transform-core.umd.js",
77
"module": "dist/json-transform-core.module.js",

javascript/json-transform-core/src/functions/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export enum EmbeddedTransformerFunction {
6565
substring = "substring", // string
6666
sum = "sum", // number
6767
switch = "switch", // #SPECIAL
68+
template = "template", // string
6869
test = "test", // boolean
6970
transform = "transform", // #SPECIAL
7071
trim = "trim", // string

0 commit comments

Comments
 (0)