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 3, 2024
1 parent e58e0fa commit f51e824
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .changeset/empty-pumpkins-double.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.0

### Major Changes

- 76c0978: Complete first release with stable API

## 0.1.5

### Patch Changes
Expand All @@ -11,7 +17,7 @@
```js
function __f0() {
return function () {
return () => 'read value';
return () => "read value";
}
.apply(undefined, undefined)
.apply(this, arguments);
Expand All @@ -21,7 +27,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": "0.1.5",
"version": "1.0.0",
"description": "Define a virtual module inline with any reference to buildtime values",
"keywords": [
"vite-plugin"
Expand Down

0 comments on commit f51e824

Please sign in to comment.