Skip to content

Commit

Permalink
Merge branch 'main' of github.com:rudderlabs/rudder-json-template-engine
Browse files Browse the repository at this point in the history
  • Loading branch information
koladilip committed Oct 1, 2024
2 parents 22505f3 + dea5df4 commit a0caf7d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.18.0"
".": "0.18.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.18.1](https://github.com/rudderlabs/rudder-json-template-engine/compare/v0.18.0...v0.18.1) (2024-09-30)


### Bug Fixes

* npm vulnerabilities ([61972c4](https://github.com/rudderlabs/rudder-json-template-engine/commit/61972c4e101ec914be6e9fe29c16596f35a0f752))

## [0.18.0](https://github.com/rudderlabs/rudder-json-template-engine/compare/v0.17.1...v0.18.0) (2024-08-22)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rudderstack/json-template-engine",
"version": "0.18.0",
"version": "0.18.1",
"homepage": "https://github.com/rudderlabs/rudder-json-template-engine",
"description": "A library for evaluating JSON template expressions.",
"main": "build/index.js",
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ engine.evaluate({ name: 'World' }); // => 'Hello World'
### Use CDN URL directly in the browser
Latest URL: https://cdn.jsdelivr.net/npm/@rudderstack/json-template-engine/build/json-template.min.js
<!-- x-release-please-start-version -->
Versioned URL: https://cdn.jsdelivr.net/npm/@rudderstack/json-template-engine@0.18.0/build/json-template.min.js
Versioned URL: https://cdn.jsdelivr.net/npm/@rudderstack/json-template-engine@0.18.1/build/json-template.min.js

```html
<script type="module">
import { JsonTemplateEngine } from 'https://cdn.jsdelivr.net/npm/@rudderstack/json-template-engine@0.18.0/build/json-template.min.js';
import { JsonTemplateEngine } from 'https://cdn.jsdelivr.net/npm/@rudderstack/json-template-engine@0.18.1/build/json-template.min.js';
const engine = JsonTemplateEngine.createAsSync(`'Hello ' + .name`);
engine.evaluate({ name: 'World' });
</script>
Expand Down

0 comments on commit a0caf7d

Please sign in to comment.