@ecopages/postcss-processor 0.2.0-alpha.25 → 0.2.0-alpha.27

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecopages/postcss-processor",
3
- "version": "0.2.0-alpha.25",
3
+ "version": "0.2.0-alpha.27",
4
4
  "description": "Postcss processor, transform string or postcss file to css",
5
5
  "keywords": [
6
6
  "postcss",
@@ -17,7 +17,7 @@
17
17
  "directory": "packages/processors/postcss-processor"
18
18
  },
19
19
  "dependencies": {
20
- "@ecopages/file-system": "0.2.0-alpha.25",
20
+ "@ecopages/file-system": "0.2.0-alpha.27",
21
21
  "@ecopages/logger": "^0.2.3",
22
22
  "autoprefixer": "^10.4.0",
23
23
  "browserslist": "^4.28.1",
@@ -27,7 +27,7 @@
27
27
  "postcss-nested": "^7.0.2"
28
28
  },
29
29
  "peerDependencies": {
30
- "@ecopages/core": "0.2.0-alpha.25",
30
+ "@ecopages/core": "0.2.0-alpha.27",
31
31
  "@tailwindcss/postcss": ">=4",
32
32
  "tailwindcss": ">=3"
33
33
  },
package/src/plugin.d.ts CHANGED
@@ -2,8 +2,7 @@
2
2
  * PostCssProcessorPlugin
3
3
  * @module @ecopages/postcss-processor
4
4
  */
5
- import { Processor, type ProcessorConfig } from '@ecopages/core/plugins/processor';
6
- import type { EcoBuildPlugin } from '@ecopages/core/build/build-types';
5
+ import { Processor, type EcoBuildPlugin, type ProcessorConfig } from '@ecopages/core/plugins/processor';
7
6
  import type postcss from 'postcss';
8
7
  /**
9
8
  * Record of PostCSS plugins keyed by name
@@ -1,4 +1,4 @@
1
- import type { EcoBuildPlugin } from '@ecopages/core/build/build-types';
1
+ import type { EcoBuildPlugin } from '@ecopages/core/plugins/processor';
2
2
  import type { CssTransform } from './css-runtime-contract.js';
3
3
  type CssLoaderOptions = {
4
4
  name: string;
@@ -1,4 +1,4 @@
1
- import type { EcoBuildPlugin } from '@ecopages/core/build/build-types';
1
+ import type { EcoBuildPlugin } from '@ecopages/core/plugins/processor';
2
2
  import type { CssTransform } from './css-runtime-contract.js';
3
3
  type BunCssLoaderOptions = {
4
4
  name: string;