From 15e58fbf5d51e32969404d2bc6d4a3cbb710b234 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 4 Oct 2024 15:28:01 +0200 Subject: [PATCH] fix(core): Correct import statement for SweetScroll. --- changelog.md | 5 +++++ ts/00_commitinfo_data.ts | 2 +- ts/domtools.pluginexports.ts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 18cdc46..ea9fe9b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-10-04 - 2.0.61 - fix(core) +Correct import statement for SweetScroll. + +- Fix import syntax for SweetScroll in domtools.pluginexports.ts + ## 2024-10-02 - 2.0.60 - fix(dependencies) Update dependencies to latest versions diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index dcf1669..21b16de 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-domtools', - version: '2.0.60', + version: '2.0.61', description: 'A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.' } diff --git a/ts/domtools.pluginexports.ts b/ts/domtools.pluginexports.ts index 90db9ea..0e24c56 100644 --- a/ts/domtools.pluginexports.ts +++ b/ts/domtools.pluginexports.ts @@ -1,7 +1,7 @@ import * as smartdelay from '@push.rocks/smartdelay'; import * as smartmarkdown from '@push.rocks/smartmarkdown'; import * as smartpromise from '@push.rocks/smartpromise'; -import * as SweetScroll from 'sweet-scroll'; +import SweetScroll from 'sweet-scroll'; import * as smartstate from '@push.rocks/smartstate'; import * as smartrx from '@push.rocks/smartrx'; import * as smartstring from '@push.rocks/smartstring';