diff --git a/changelog.md b/changelog.md index d48aae4..12c05ca 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2025-07-06 - 2.1.2 - fix(build) +Update build script in package.json to include 'tsfolders' in tsbuild command + +- Changed build script from 'tsbuild --web --allowimplicitany && tsbundle npm' to 'tsbuild tsfolders --web --allowimplicitany && tsbundle npm' + ## 2025-07-06 - 2.1.1 - fix(documentation) Refine project documentation and metadata for clarity diff --git a/package.json b/package.json index 9cba6b4..88eda41 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "license": "MIT", "scripts": { "test": "(tstest test/ --web)", - "build": "(tsbuild --web --allowimplicitany && tsbundle npm)", + "build": "(tsbuild tsfolders --web --allowimplicitany && tsbundle npm)", "buildDocs": "tsdoc" }, "devDependencies": { diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 84a4ad5..e6d0cea 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-element', - version: '2.1.1', + version: '2.1.2', description: 'A library for creating custom elements extending the lit element class with additional functionalities.' }