Skip to content

Commit

Permalink
chore(changesets): 🦋 publish packages (#55)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Sep 18, 2023
1 parent 5b865ae commit 5e4486a
Show file tree
Hide file tree
Showing 5 changed files with 125 additions and 62 deletions.
60 changes: 0 additions & 60 deletions .changeset/stale-kiwis-invent.md

This file was deleted.

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

## 0.3.1

### Patch Changes

- [#56](https://github.com/taishinaritomi/excss/pull/56) [`5b865ae`](https://github.com/taishinaritomi/excss/commit/5b865ae9532c4c3c3125f251d4c83565de2a8656) Thanks [@taishinaritomi](https://github.com/taishinaritomi)! - release 0.3.1

refactor: rename inject to helper

```diff
// excss.config.ts
import { defineConfig } from "excss/config";

export default defineConfig({
- inject: ``,
+ helper: ``,
});
```

feat: support for excss.config.ts

```diff
// excss.config.ts
+import { defineConfig } from "excss/config";
+
+export default defineConfig({
+ helper: ``,
+});
```

feat: integrated variants field into helper field

```diff
// 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

```diff
-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";
```

## 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.3.0",
"version": "0.3.1",
"license": "MIT",
"author": "Taishi Naritomi",
"description": "",
Expand Down
63 changes: 63 additions & 0 deletions packages/excss/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,68 @@
# excss

## 0.3.1

### Patch Changes

- [#56](https://github.com/taishinaritomi/excss/pull/56) [`5b865ae`](https://github.com/taishinaritomi/excss/commit/5b865ae9532c4c3c3125f251d4c83565de2a8656) Thanks [@taishinaritomi](https://github.com/taishinaritomi)! - release 0.3.1

refactor: rename inject to helper

```diff
// excss.config.ts
import { defineConfig } from "excss/config";

export default defineConfig({
- inject: ``,
+ helper: ``,
});
```

feat: support for excss.config.ts

```diff
// excss.config.ts
+import { defineConfig } from "excss/config";
+
+export default defineConfig({
+ helper: ``,
+});
```

feat: integrated variants field into helper field

```diff
// 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

```diff
-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`](https://github.com/taishinaritomi/excss/commit/5b865ae9532c4c3c3125f251d4c83565de2a8656)]:
- @excss/compiler@0.3.1

## 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.3.0",
"version": "0.3.1",
"license": "MIT",
"author": "Taishi Naritomi",
"description": "",
Expand Down

0 comments on commit 5e4486a

Please sign in to comment.