Compare commits

..

No commits in common. "master" and "v2.2.0" have entirely different histories.

3 changed files with 3 additions and 8 deletions

View File

@ -1,10 +1,5 @@
# Changelog
## 2024-09-05 - 2.2.1 - fix(core)
Add --allowimplicitany flag to build script
- Updated the build script in package.json to include the --allowimplicitany flag for TypeScript compilation.
## 2024-09-05 - 2.2.0 - feat(smartjwt)
Add nested JWT functionality

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartjwt",
"version": "2.2.1",
"version": "2.2.0",
"private": false,
"description": "A JavaScript package for creating and verifying JWTs with strong typing support.",
"main": "dist_ts/index.js",
@ -9,7 +9,7 @@
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild --allowimplicitany)"
"build": "(tsbuild)"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.84",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartjwt',
version: '2.2.1',
version: '2.2.0',
description: 'A JavaScript package for creating and verifying JWTs with strong typing support.'
}