Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(changesets): 🦋 publish packages #30

Merged
merged 1 commit into from
Sep 17, 2023

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Aug 25, 2023

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@excss/compiler@0.1.0

Minor Changes

  • #48 c7b6aa6 Thanks @taishinaritomi! - refactor: rename inject to helper

    // excss.config.ts
    import { defineConfig } from "excss/config";
    
    export default defineConfig({
    -  inject: ``,
    +  helper: ``,
    });
  • #32 6955f23 Thanks @taishinaritomi! - feat: integrated variants field into inject field

    +import { variants } from "excss/config";
    
    {
    - variants: {
    -   red: "#ff0000",
    - },
      helper: `
    +   ${variants({
    +     red: "#ff0000",
    +   })}
        $breakpoints: (
          400: "screen and (max-width: 400px)",
          800: "screen and (max-width: 800px)",
          1000: "screen and (max-width: 1000px)",
        ) !default;
    
        @mixin mq($breakpoint) {
          @media #{map-get($breakpoints, $breakpoint)} {
              @content;
          }
        }
      `,
    }

Patch Changes

excss@0.1.0

Minor Changes

  • #48 c7b6aa6 Thanks @taishinaritomi! - refactor: rename inject to helper

    // excss.config.ts
    import { defineConfig } from "excss/config";
    
    export default defineConfig({
    -  inject: ``,
    +  helper: ``,
    });
  • #35 8953f56 Thanks @taishinaritomi! - feat: support for excss.config.ts

    vite.config.ts

    In the updated configuration, we have simplified the excss plugin initialization in vite.config.ts. Similar changes are also implemented in Next.js and webpack.

    import Excss from "excss/vite";
    import { defineConfig } from "vite";
    
    export default defineConfig({
      plugins: [
    +    Excss(),
    -    Excss({
    -      inject: ``,
    -    }),
      ],
    });

    excss.config.ts

    A new file excss.config.ts has been introduced to house the excess configuration settings, which includes the inject option.

    +import { defineConfig } from "excss/config";
    +
    +export default defineConfig({
    +  helper: ``,
    +});
  • #40 5e03c41 Thanks @taishinaritomi! - refactor: webpack plugin

  • #32 6955f23 Thanks @taishinaritomi! - feat: integrated variants field into inject field

    +import { variants } from "excss/config";
    
    {
    - variants: {
    -   red: "#ff0000",
    - },
      helper: `
    +   ${variants({
    +     red: "#ff0000",
    +   })}
        $breakpoints: (
          400: "screen and (max-width: 400px)",
          800: "screen and (max-width: 800px)",
          1000: "screen and (max-width: 1000px)",
        ) !default;
    
        @mixin mq($breakpoint) {
          @media #{map-get($breakpoints, $breakpoint)} {
              @content;
          }
        }
      `,
    }
  • #33 9d49dc8 Thanks @taishinaritomi! - 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";

Patch Changes

@github-actions github-actions bot force-pushed the changeset-release/main branch 4 times, most recently from 2c802e2 to 9fe963f Compare August 30, 2023 16:58
@github-actions github-actions bot force-pushed the changeset-release/main branch 5 times, most recently from db30a0d to ab5835e Compare September 13, 2023 12:12
@github-actions github-actions bot force-pushed the changeset-release/main branch 5 times, most recently from 20d1e22 to e5344ab Compare September 16, 2023 13:05
@taishinaritomi
Copy link
Owner

:snapshot_release

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant