@seyuna/postcss 0.0.1-dev.4 → 0.0.1-dev.6
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/dist/functions/color.js +1 -1
- package/dist/index.d.ts +5 -2
- package/dist/index.js +6 -6
- package/dist/plugin.d.ts +1 -2
- package/package.json +1 -1
- package/src/functions/color.ts +1 -1
- package/src/index.ts +8 -2
- package/src/plugin.ts +1 -1
package/dist/functions/color.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
declare const _default: import("postcss").PluginCreator<import("./plugin").PluginOptions> & {
|
|
2
|
+
postcss: boolean;
|
|
3
|
+
functions: Record<string, import("./functions").FnHandler>;
|
|
4
|
+
};
|
|
5
|
+
export = _default;
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
const plugin_1 = require("./plugin");
|
|
3
|
+
const functions_1 = require("./functions");
|
|
4
|
+
module.exports = Object.assign(plugin_1.dynamicFunctionsPlugin, {
|
|
5
|
+
postcss: true,
|
|
6
|
+
functions: functions_1.functions
|
|
7
|
+
});
|
package/dist/plugin.d.ts
CHANGED
package/package.json
CHANGED
package/src/functions/color.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import { dynamicFunctionsPlugin } from './plugin';
|
|
2
|
+
import { functions } from './functions';
|
|
3
|
+
|
|
4
|
+
// CommonJS-friendly export
|
|
5
|
+
export = Object.assign(dynamicFunctionsPlugin, {
|
|
6
|
+
postcss: true,
|
|
7
|
+
functions
|
|
8
|
+
});
|