@ecopages/postcss-processor 0.2.0-alpha.34 → 0.2.0-alpha.35

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/package.json +5 -5
  2. package/CHANGELOG.md +0 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecopages/postcss-processor",
3
- "version": "0.2.0-alpha.34",
3
+ "version": "0.2.0-alpha.35",
4
4
  "description": "Postcss processor, transform string or postcss file to css",
5
5
  "keywords": [
6
6
  "postcss",
@@ -19,10 +19,10 @@
19
19
  "dependencies": {
20
20
  "@ecopages/file-system": "0.2.0-alpha.34",
21
21
  "@ecopages/logger": "^0.2.3",
22
- "autoprefixer": "^10.4.0",
23
- "browserslist": "^4.28.1",
24
- "cssnano": "^7.1.4",
25
- "postcss": "^8.4.32",
22
+ "autoprefixer": "^10.5.0",
23
+ "browserslist": "^4.28.2",
24
+ "cssnano": "^7.1.9",
25
+ "postcss": "^8.5.14",
26
26
  "postcss-import": "^16.1.1",
27
27
  "postcss-nested": "^7.0.2"
28
28
  },
package/CHANGELOG.md DELETED
@@ -1,21 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to `@ecopages/postcss-processor` are documented here.
4
-
5
- > **Note:** Changelog tracking begins at version `0.2.0`. Changes prior to this release are not recorded here but are available in the git history.
6
-
7
- ## [UNRELEASED] — TBD
8
-
9
- ### Features
10
-
11
- - Added reusable runtime CSS loading, a public `PostcssProcessor` class, and build-adapter registration for the plugin.
12
-
13
- ### Bug Fixes
14
-
15
- - Fixed runtime PostCSS config loading and stylesheet rebuilds for Tailwind-driven template changes.
16
-
17
- - Fixed direct stylesheet processing and preset output so Tailwind v4 preserves injected references and nested BEM selectors.
18
-
19
- ### Tests
20
-
21
- - Added processor and preset coverage for the runtime CSS loader and build adapter flow.