Skip to content

Commit

Permalink
[ci] release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and Fryuni committed Feb 4, 2024
1 parent 50d6348 commit 1eaffce
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .changeset/flat-ravens-fix.md

This file was deleted.

10 changes: 8 additions & 2 deletions packages/inline-mod/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @inox-tools/inline-mod

## 1.0.1

### Patch Changes

- 3bf3825: Add support for referring to named exports instead of serializing them recursivelly

## 1.0.0

### Major Changes
Expand All @@ -17,7 +23,7 @@
```js
function __f0() {
return function () {
return () => 'read value';
return () => "read value";
}
.apply(undefined, undefined)
.apply(this, arguments);
Expand All @@ -27,7 +33,7 @@
Now it is serialized to this:

```js
const __f0 = () => 'read value';
const __f0 = () => "read value";
```

- 1b3919f: Fix support for circular values
Expand Down
2 changes: 1 addition & 1 deletion packages/inline-mod/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inox-tools/inline-mod",
"version": "1.0.0",
"version": "1.0.1",
"description": "Define a virtual module inline with any reference to buildtime values",
"keywords": [
"vite-plugin"
Expand Down

0 comments on commit 1eaffce

Please sign in to comment.