Skip to content

Commit

Permalink
[ci] release (#6)
Browse files Browse the repository at this point in the history
This PR was opened by the [Changesets
release](https://github.com/changesets/action) 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
## @inox-tools/[email protected]

### Minor Changes

-   3d16a70: Minimal working version

### Patch Changes

-   3d16a70: Fix dynamic import warning

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
Fryuni and github-actions[bot] authored Jan 21, 2024
1 parent 321d152 commit 2632072
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 19 deletions.
5 changes: 0 additions & 5 deletions .changeset/silent-coins-guess.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-mayflies-explode.md

This file was deleted.

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

## 0.1.0

### Minor Changes

- 3d16a70: Minimal working version

### Patch Changes

- 3d16a70: Fix dynamic import warning

## 0.0.1

### Patch Changes
Expand Down
1 change: 0 additions & 1 deletion packages/inline-mod/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

---


# License

Like all libraries under InoxTools, `@inox-tools/inline-mod` is licensed under the MIT License.
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.0.4",
"version": "0.1.0",
"description": "Define a virtual module inline with any reference to buildtime values",
"keywords": [
"vite-plugin"
Expand Down
6 changes: 3 additions & 3 deletions packages/inline-mod/src/closure/inspectCode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { Entry, EntryRegistry } from './entry.js';
import { Lazy } from './lazy.js';
import { getModuleFromPath } from './package.js';
import {
parseFunction,
type CapturedPropertyChain,
type CapturedVariables
parseFunction,
type CapturedPropertyChain,
type CapturedVariables,
} from './parseFunction.js';
import { rewriteSuperReferences } from './rewriteSuper.js';
import { InspectedFunction, type PropertyInfo, type PropertyMap } from './types.js';
Expand Down
8 changes: 4 additions & 4 deletions packages/inline-mod/src/closure/serialization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
import type { Entry } from './entry.js';
import type { InspectedFunction } from './types.js';
import {
type InspectedObject,
type PropertyInfo,
type PropertyInfoAndValue,
type PropertyMap
type InspectedObject,
type PropertyInfo,
type PropertyInfoAndValue,
type PropertyMap,
} from './types.js';
import * as utils from './utils.js';

Expand Down

0 comments on commit 2632072

Please sign in to comment.