Skip to content

Commit

Permalink
chore: update npm package name
Browse files Browse the repository at this point in the history
  • Loading branch information
koladilip committed Sep 13, 2023
1 parent 2982e11 commit 48a4307
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
token: ${{ github.token }}
pull-request-title-pattern: "chore: release ${version}"
release-type: node
package-name: rudder-json-template-engine
package-name: "@rudderstack/json-template-engine"
default-branch: ${{ steps.extract_branch.outputs.branch }}
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false},{"type":"refactor","section":"Miscellaneous","hidden":false},{"type":"test","section":"Miscellaneous","hidden":false},{"type":"doc","section":"Documentation","hidden":false}]'
bump-minor-pre-major: true
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,10 +288,10 @@ For more examples, refer [Scenarios](test/scenarios)
## [Syntax](docs/syntax.md)

## Getting started
`npm install rudder-json-template-engine`
`npm install @rudderstack/json-template-engine`

```ts
const { JsonTemplateEngine } = require('rudder-json-template-engine');
const { JsonTemplateEngine } = require('@rudderstack/json-template-engine');
const engine = JsonTemplateEngine.create(`'Hello ' + .name`);
engine.evaluate({name: 'World'}); // => 'Hello World'
```
Expand Down

0 comments on commit 48a4307

Please sign in to comment.