Compare commits

..

2 Commits

Author SHA1 Message Date
8b9420d9b6 v2.0.54 2025-11-27 13:31:56 +00:00
65bd0ea9c8 fix(package): Pin package manager to pnpm@10.18.1 in package.json 2025-11-27 13:31:56 +00:00
3 changed files with 10 additions and 3 deletions

View File

@@ -1,5 +1,11 @@
# Changelog # Changelog
## 2025-11-27 - 2.0.54 - fix(package)
Pin package manager to pnpm@10.18.1 in package.json
- Added packageManager field to package.json to pin pnpm to 10.18.1 with integrity hash
- No runtime code changes; only package metadata updated
## 2025-11-27 - 2.0.53 - fix(core) ## 2025-11-27 - 2.0.53 - fix(core)
Refactor filesystem usage to smartfs async provider, update dependencies, tests and nginx config paths Refactor filesystem usage to smartfs async provider, update dependencies, tests and nginx config paths

View File

@@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartnginx", "name": "@push.rocks/smartnginx",
"version": "2.0.53", "version": "2.0.54",
"private": false, "private": false,
"description": "A TypeScript library for controlling Nginx from Node.js, with support for generating and managing Nginx configurations dynamically.", "description": "A TypeScript library for controlling Nginx from Node.js, with support for generating and managing Nginx configurations dynamically.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@@ -61,5 +61,6 @@
"type": "module", "type": "module",
"browserslist": [ "browserslist": [
"last 1 chrome versions" "last 1 chrome versions"
] ],
"packageManager": "pnpm@10.18.1+sha512.77a884a165cbba2d8d1c19e3b4880eee6d2fcabd0d879121e282196b80042351d5eb3ca0935fa599da1dc51265cc68816ad2bddd2a2de5ea9fdf92adbec7cd34"
} }

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartnginx', name: '@push.rocks/smartnginx',
version: '2.0.53', version: '2.0.54',
description: 'A TypeScript library for controlling Nginx from Node.js, with support for generating and managing Nginx configurations dynamically.' description: 'A TypeScript library for controlling Nginx from Node.js, with support for generating and managing Nginx configurations dynamically.'
} }