diff --git a/changelog.md b/changelog.md index cb912c6..21bc0bd 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2024-10-02 - 1.0.10 - fix(build) +Fix build script configuration and plugins import path + +- Corrected the build script in package.json to include tsfolders parameter +- Fixed the import path for plugins in classes.infohtml.ts + ## 2024-10-02 - 1.0.9 - fix(infohtml) Refactor infohtml module and fix import paths diff --git a/package.json b/package.json index f2ea44f..b2bf8af 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "license": "MIT", "scripts": { "test": "(tstest test/ --web)", - "build": "(tsbuild --web --allowimplicitany)", + "build": "(tsbuild tsfolders --web --allowimplicitany)", "localPublish": "gitzone commit && pnpm run build && pnpm publish && pnpm publish --access public --registry=\"https://registry.npmjs.org\"" }, "devDependencies": { diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index ce5d7fe..ec88ac6 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/platformclient', - version: '1.0.9', + version: '1.0.10', description: 'a module that makes it really easy to use the serve.zone platform inside your app' } diff --git a/ts_infohtml/classes.infohtml.ts b/ts_infohtml/classes.infohtml.ts index 8fcbf79..ceba152 100644 --- a/ts_infohtml/classes.infohtml.ts +++ b/ts_infohtml/classes.infohtml.ts @@ -1,4 +1,4 @@ -import * as plugins from '../ts/plugins.js'; +import * as plugins from './plugins.js'; import { simpleInfo } from './template.js';