diff --git a/.changeset/silent-coins-guess.md b/.changeset/silent-coins-guess.md deleted file mode 100644 index 7dab44e2..00000000 --- a/.changeset/silent-coins-guess.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@inox-tools/inline-mod": minor ---- - -Minimal working version diff --git a/.changeset/swift-mayflies-explode.md b/.changeset/swift-mayflies-explode.md deleted file mode 100644 index 41e49004..00000000 --- a/.changeset/swift-mayflies-explode.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@inox-tools/inline-mod": patch ---- - -Fix dynamic import warning diff --git a/packages/inline-mod/CHANGELOG.md b/packages/inline-mod/CHANGELOG.md index ff42e8ca..7a0ad4e1 100644 --- a/packages/inline-mod/CHANGELOG.md +++ b/packages/inline-mod/CHANGELOG.md @@ -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 diff --git a/packages/inline-mod/README.md b/packages/inline-mod/README.md index 416c89b6..7e2da74b 100644 --- a/packages/inline-mod/README.md +++ b/packages/inline-mod/README.md @@ -6,7 +6,6 @@ --- - # License Like all libraries under InoxTools, `@inox-tools/inline-mod` is licensed under the MIT License. diff --git a/packages/inline-mod/package.json b/packages/inline-mod/package.json index b06eb0a5..17ae8e2f 100644 --- a/packages/inline-mod/package.json +++ b/packages/inline-mod/package.json @@ -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" diff --git a/packages/inline-mod/src/closure/inspectCode.ts b/packages/inline-mod/src/closure/inspectCode.ts index 76e24fb8..60b8f972 100644 --- a/packages/inline-mod/src/closure/inspectCode.ts +++ b/packages/inline-mod/src/closure/inspectCode.ts @@ -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'; diff --git a/packages/inline-mod/src/closure/serialization.ts b/packages/inline-mod/src/closure/serialization.ts index 1cca4e2b..39f62559 100644 --- a/packages/inline-mod/src/closure/serialization.ts +++ b/packages/inline-mod/src/closure/serialization.ts @@ -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';