diff --git a/changelog.md b/changelog.md index 53912a7..c02146c 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-06-30 - 1.1.1 - fix(build) +Fix build script by updating source folders. + +- Updated build script to correctly reference 'tsfolders' folder. + ## 2024-06-30 - 1.1.0 - feat(project dependencies) Updated various dependencies and internal fonts diff --git a/package.json b/package.json index 7b8acd3..51379df 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "type": "module", "scripts": { "test": "tstest test/ --web", - "build": "tsbuild element --allowimplicitany && tsbundle element --production", + "build": "tsbuild tsfolders --allowimplicitany && tsbundle element --production", "watch": "tswatch element", "buildDocs": "tsdoc" }, diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 1d342fb..9c389f9 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-catalog', - version: '1.1.0', + version: '1.1.1', description: 'A library for building components and other projects' }