Releases: taishinaritomi/excss
Releases · taishinaritomi/excss
excss@0.3.1
Patch Changes
-
#56
5b865ae
Thanks @taishinaritomi! - release 0.3.1refactor: rename inject to helper
// excss.config.ts import { defineConfig } from "excss/config"; export default defineConfig({ - inject: ``, + helper: ``, });
feat: support for excss.config.ts
// excss.config.ts +import { defineConfig } from "excss/config"; + +export default defineConfig({ + helper: ``, +});
feat: integrated variants field into helper field
// excss.config.ts +import { variants } from "excss/config"; +export default defineConfig({ - variants: { - red: "#ff0000", - }, helper: ` + ${variants({ + red: "#ff0000", + })} `, +});
feat: change export method for plugins from named export to default export
-import { Excss } from "excss/vite"; +import Excss from "excss/vite"; -import { ExcssPlugin } from "excss/webpack"; +import ExcssPlugin from "excss/webpack"; -import { createExcss } from "excss/next"; +import createExcss from "excss/next";
-
Updated dependencies [
5b865ae
]:- @excss/compiler@0.3.1
@excss/compiler@0.3.1
Patch Changes
-
#56
5b865ae
Thanks @taishinaritomi! - release 0.3.1refactor: rename inject to helper
// excss.config.ts import { defineConfig } from "excss/config"; export default defineConfig({ - inject: ``, + helper: ``, });
feat: support for excss.config.ts
// excss.config.ts +import { defineConfig } from "excss/config"; + +export default defineConfig({ + helper: ``, +});
feat: integrated variants field into helper field
// excss.config.ts +import { variants } from "excss/config"; +export default defineConfig({ - variants: { - red: "#ff0000", - }, helper: ` + ${variants({ + red: "#ff0000", + })} `, +});
feat: change export method for plugins from named export to default export
-import { Excss } from "excss/vite"; +import Excss from "excss/vite"; -import { ExcssPlugin } from "excss/webpack"; +import ExcssPlugin from "excss/webpack"; -import { createExcss } from "excss/next"; +import createExcss from "excss/next";
excss@0.0.11
Patch Changes
-
#24
4bdae5f
Thanks @taishinaritomi! - feat: extracting the compiler package -
Updated dependencies [
4bdae5f
]:- @excss/compiler@0.0.1
@excss/compiler@0.0.1
Patch Changes
- #24
4bdae5f
Thanks @taishinaritomi! - feat: extracting the compiler package
excss@0.0.10
Patch Changes
- #22
813a355
Thanks @taishinaritomi! - feat: change the export name of the plugin
excss@0.0.9
Patch Changes
- #18
f0d4886
Thanks @taishinaritomi! - feat: strict the types for the ex API and add tests
excss@0.0.8
Patch Changes
- #16
4f162a0
Thanks @taishinaritomi! - feat: make the ex API simpler.
excss@0.0.7
Patch Changes
- #14
2ef4ca7
Thanks @taishinaritomi! - fix: fixed the issue where FILE_ID cannot be used without variants options
excss@0.0.6
Patch Changes
- #12
aeefa33
Thanks @taishinaritomi! - fix: fix build script
excss@0.0.5
Patch Changes
- #10
b66d7ab
Thanks @taishinaritomi! - fix: change the out dir for wasm