Skip to content

Commit

Permalink
publish packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 30, 2023
1 parent 6955f23 commit 2c802e2
Show file tree
Hide file tree
Showing 8 changed files with 83 additions and 51 deletions.
6 changes: 0 additions & 6 deletions .changeset/cool-impalas-report.md

This file was deleted.

32 changes: 0 additions & 32 deletions .changeset/moody-cameras-vanish.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/olive-boxes-jog.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/slimy-queens-develop.md

This file was deleted.

40 changes: 40 additions & 0 deletions packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,45 @@
# @excss/compiler

## 0.1.0

### Minor Changes

- [#32](https://github.com/taishinaritomi/excss/pull/32) [`6955f23`](https://github.com/taishinaritomi/excss/commit/6955f2330bcb59cf9366a64a52124e29c6352cd6) Thanks [@taishinaritomi](https://github.com/taishinaritomi)! - feat: integrated variants field into inject field

```diff
+import { variants } from "excss/config";

{
- variants: {
- red: "#ff0000",
- },
inject: `
+ ${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

- [#28](https://github.com/taishinaritomi/excss/pull/28) [`2f59bf8`](https://github.com/taishinaritomi/excss/commit/2f59bf85a9fe4148f9ddb4cc465bf5a0c9033fda) Thanks [@taishinaritomi](https://github.com/taishinaritomi)! - feat: change in hash generation method for FILE_ID

- [#29](https://github.com/taishinaritomi/excss/pull/29) [`10b44d8`](https://github.com/taishinaritomi/excss/commit/10b44d85d4f05e4e0f7020a4d68b9b7af2024830) Thanks [@taishinaritomi](https://github.com/taishinaritomi)! - refactor: modification of the shim injected into wasm.

- [#31](https://github.com/taishinaritomi/excss/pull/31) [`7e18937`](https://github.com/taishinaritomi/excss/commit/7e189372376e10298e93c054e73619d59f8cde67) Thanks [@taishinaritomi](https://github.com/taishinaritomi)! - feat: add support for ESM

## 0.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@excss/compiler",
"version": "0.0.1",
"version": "0.1.0",
"license": "MIT",
"author": "Taishi Naritomi",
"description": "",
Expand Down
41 changes: 41 additions & 0 deletions packages/excss/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# excss

## 0.1.0

### Minor Changes

- [#32](https://github.com/taishinaritomi/excss/pull/32) [`6955f23`](https://github.com/taishinaritomi/excss/commit/6955f2330bcb59cf9366a64a52124e29c6352cd6) Thanks [@taishinaritomi](https://github.com/taishinaritomi)! - feat: integrated variants field into inject field

```diff
+import { variants } from "excss/config";

{
- variants: {
- red: "#ff0000",
- },
inject: `
+ ${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

- [#28](https://github.com/taishinaritomi/excss/pull/28) [`2f59bf8`](https://github.com/taishinaritomi/excss/commit/2f59bf85a9fe4148f9ddb4cc465bf5a0c9033fda) Thanks [@taishinaritomi](https://github.com/taishinaritomi)! - feat: change in hash generation method for FILE_ID

- [#31](https://github.com/taishinaritomi/excss/pull/31) [`7e18937`](https://github.com/taishinaritomi/excss/commit/7e189372376e10298e93c054e73619d59f8cde67) Thanks [@taishinaritomi](https://github.com/taishinaritomi)! - feat: add support for ESM

- Updated dependencies [[`2f59bf8`](https://github.com/taishinaritomi/excss/commit/2f59bf85a9fe4148f9ddb4cc465bf5a0c9033fda), [`6955f23`](https://github.com/taishinaritomi/excss/commit/6955f2330bcb59cf9366a64a52124e29c6352cd6), [`10b44d8`](https://github.com/taishinaritomi/excss/commit/10b44d85d4f05e4e0f7020a4d68b9b7af2024830), [`7e18937`](https://github.com/taishinaritomi/excss/commit/7e189372376e10298e93c054e73619d59f8cde67)]:
- @excss/compiler@0.1.0

## 0.0.11

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/excss/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "excss",
"version": "0.0.11",
"version": "0.1.0",
"license": "MIT",
"author": "Taishi Naritomi",
"description": "",
Expand Down

0 comments on commit 2c802e2

Please sign in to comment.