Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
e69fe8f99f | |||
41c4b29ea6 |
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# 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)
|
## 2024-09-05 - 2.2.0 - feat(smartjwt)
|
||||||
Add nested JWT functionality
|
Add nested JWT functionality
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@push.rocks/smartjwt",
|
"name": "@push.rocks/smartjwt",
|
||||||
"version": "2.2.0",
|
"version": "2.2.1",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A JavaScript package for creating and verifying JWTs with strong typing support.",
|
"description": "A JavaScript package for creating and verifying JWTs with strong typing support.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@ -9,7 +9,7 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/)",
|
"test": "(tstest test/)",
|
||||||
"build": "(tsbuild)"
|
"build": "(tsbuild --allowimplicitany)"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^2.1.84",
|
"@git.zone/tsbuild": "^2.1.84",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartjwt',
|
name: '@push.rocks/smartjwt',
|
||||||
version: '2.2.0',
|
version: '2.2.1',
|
||||||
description: 'A JavaScript package for creating and verifying JWTs with strong typing support.'
|
description: 'A JavaScript package for creating and verifying JWTs with strong typing support.'
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user