Skip to content

Commit

Permalink
chore(release): publish 1.0.0-0
Browse files Browse the repository at this point in the history
fix publish dist path

switch from esbuild to rollup
  • Loading branch information
bennettp123 committed Aug 16, 2024
1 parent 7a03153 commit 6306c9c
Show file tree
Hide file tree
Showing 5 changed files with 1,434 additions and 348 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# @wanews/lambda-edge-openid-auth
## 1.0.0-0 (2024-08-16)

- update to nx 19.6.0
- update to node 20
- update typescript to 5.5.4
- remove unused aws-lambda dependency (only using `@types/aws-lambda`)
- update jsonwebtoken to 9.0.2
- update jwk-to-pem to 2.0.6
- update query-string to 9.1.0
- update pino to 9.3.2
- update cookie to 0.6.0
- update node-fetch to 3.3.2
- refactored from an nx monorepo to a standalone nx package

## 0.2.1

Expand Down
11 changes: 11 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
},
"nx-release-publish": {
"options": {
"packageRoot": "dist/{projectName}"
}
}
},
"release": {
Expand All @@ -44,6 +49,12 @@
"targetName": "test"
},
"exclude": ["e2e/**/*"]
},
{
"plugin": "@nx/rollup/plugin",
"options": {
"buildTargetName": "build"
}
}
]
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@wanews/lambda-edge-openid-auth",
"version": "0.3.0",
"version": "1.0.0-0",
"license": "MIT",
"main": "src/index.ts",
"main": "src/index.js",
"scripts": {
"build": "nx build",
"test": "nx test",
Expand All @@ -20,12 +20,12 @@
"typescript-log": "^2.0.0"
},
"devDependencies": {
"@nx/esbuild": "19.6.0",
"@nx/eslint": "19.6.0",
"@nx/eslint-plugin": "19.6.0",
"@nx/jest": "19.6.0",
"@nx/js": "19.6.0",
"@nx/node": "19.6.0",
"@nx/rollup": "19.6.0",
"@nx/workspace": "19.6.0",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
Expand All @@ -40,7 +40,6 @@
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"esbuild": "^0.19.2",
"eslint": "~8.57.0",
"eslint-config-prettier": "^9.0.0",
"express": "^4.19.2",
Expand All @@ -49,6 +48,7 @@
"nx": "19.6.0",
"oidc-provider": "^8.5.1",
"prettier": "^2.6.2",
"rollup": "^4.14.0",
"supertest": "^7.0.0",
"supertest-session": "^5.0.1",
"ts-jest": "^29.1.0",
Expand Down
Loading

0 comments on commit 6306c9c

Please sign in to comment.