@bamboocss/postcss 1.12.1 → 1.12.3

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.
@@ -0,0 +1,15 @@
1
+ import { Builder } from "@bamboocss/node";
2
+ import { PluginCreator } from "postcss";
3
+
4
+ //#region src/index.d.ts
5
+ interface PluginOptions {
6
+ configPath?: string;
7
+ cwd?: string;
8
+ logfile?: string;
9
+ allow?: RegExp[];
10
+ }
11
+ declare const loadConfig: () => any;
12
+ declare const builder: Builder;
13
+ declare const bamboocss: PluginCreator<PluginOptions>;
14
+ //#endregion
15
+ export { PluginOptions, bamboocss, bamboocss as default, builder, loadConfig };
@@ -0,0 +1,15 @@
1
+ import { Builder } from "@bamboocss/node";
2
+ import { PluginCreator } from "postcss";
3
+
4
+ //#region src/index.d.ts
5
+ interface PluginOptions {
6
+ configPath?: string;
7
+ cwd?: string;
8
+ logfile?: string;
9
+ allow?: RegExp[];
10
+ }
11
+ declare const loadConfig: () => any;
12
+ declare const builder: Builder;
13
+ declare const bamboocss: PluginCreator<PluginOptions>;
14
+ //#endregion
15
+ export { PluginOptions, bamboocss, bamboocss as default, builder, loadConfig };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bamboocss/postcss",
3
- "version": "1.12.1",
3
+ "version": "1.12.3",
4
4
  "description": "PostCSS integration for Bamboo CSS",
5
5
  "homepage": "https://bamboo-css.com",
6
6
  "license": "MIT",
@@ -34,10 +34,10 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "postcss": "8.5.14",
37
- "@bamboocss/node": "1.12.1"
37
+ "@bamboocss/node": "1.12.3"
38
38
  },
39
39
  "devDependencies": {
40
- "@bamboocss/logger": "1.12.1"
40
+ "@bamboocss/logger": "1.12.3"
41
41
  },
42
42
  "scripts": {
43
43
  "build": "tsdown src/index.ts --format=cjs,esm --shims --dts",