diff --git a/dist/index.d.ts b/dist/index.d.ts index 78e10bc..5487829 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -10,5 +10,5 @@ declare global { customAttributes: CustomAttributeRegistry; } } -export declare const version = "0.2.2"; +export declare const version = "0.2.3"; //# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/dist/index.js b/dist/index.js index e8e661d..6fa4583 100644 --- a/dist/index.js +++ b/dist/index.js @@ -7,5 +7,5 @@ export let customAttributes; // Avoid errors trying to use DOM APIs in non-DOM environments (f.e. server-side rendering). if (globalThis.window?.document) customAttributes = globalThis.customAttributes = new CustomAttributeRegistry(document); -export const version = '0.2.2'; +export const version = '0.2.3'; //# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/package.json b/package.json index ef5cfe9..bd4e8cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lume/custom-attributes", - "version": "0.2.2", + "version": "0.2.3", "description": "Custom attributes: like custom elements, but for attributes", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/index.ts b/src/index.ts index 226836d..83eb5ff 100644 --- a/src/index.ts +++ b/src/index.ts @@ -28,4 +28,4 @@ declare global { } } -export const version = '0.2.2' +export const version = '0.2.3'