Skip to content

Releases: taishinaritomi/excss

excss@0.3.1

18 Sep 10:45
5e4486a
Compare
Choose a tag to compare

Patch Changes

  • #56 5b865ae Thanks @taishinaritomi! - release 0.3.1

    refactor: 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

18 Sep 10:45
5e4486a
Compare
Choose a tag to compare

Patch Changes

  • #56 5b865ae Thanks @taishinaritomi! - release 0.3.1

    refactor: 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

20 Aug 10:34
87bc61c
Compare
Choose a tag to compare

Patch Changes

@excss/compiler@0.0.1

20 Aug 10:34
87bc61c
Compare
Choose a tag to compare

Patch Changes

excss@0.0.10

17 Aug 15:33
7d35bb3
Compare
Choose a tag to compare

Patch Changes

excss@0.0.9

16 Aug 15:02
e92aa3b
Compare
Choose a tag to compare

Patch Changes

excss@0.0.8

15 Aug 13:49
dddf17b
Compare
Choose a tag to compare

Patch Changes

excss@0.0.7

13 Aug 11:05
0bfeb84
Compare
Choose a tag to compare

Patch Changes

excss@0.0.6

13 Aug 10:24
f9b48de
Compare
Choose a tag to compare

Patch Changes

excss@0.0.5

13 Aug 07:10
796d3a9
Compare
Choose a tag to compare

Patch Changes