nodejs-quickstart-structure 2.1.1 → 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
2
2
 
3
+ ## [2.1.2] - 2026-04-27
4
+
5
+ ### Changed
6
+ - **Security Hardening**: Updated `postcss` to `^8.5.10` in project overrides to resolve potential security vulnerabilities and improve build stability.
7
+
3
8
  ## [2.1.1] - 2026-04-24
4
9
 
5
10
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nodejs-quickstart-structure",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "type": "module",
5
5
  "description": "The ultimate nodejs quickstart structure CLI to scaffold Node.js microservices with MVC or Clean Architecture",
6
6
  "main": "bin/index.js",
@@ -64,7 +64,8 @@
64
64
  },
65
65
  "overrides": {
66
66
  "esbuild": "^0.25.0",
67
- "vite": "^6.4.2"
67
+ "vite": "^6.4.2",
68
+ "postcss": "^8.5.10"
68
69
  },
69
70
  "devDependencies": {
70
71
  "snyk": "^1.1303.2",