fix(build): Fix build script configuration and plugins import path

This commit is contained in:
Philipp Kunz 2024-10-02 08:12:27 +02:00
parent 274bffb318
commit 63700c3754
4 changed files with 9 additions and 3 deletions

View File

@ -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

View File

@ -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": {

View File

@ -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'
}

View File

@ -1,4 +1,4 @@
import * as plugins from '../ts/plugins.js';
import * as plugins from './plugins.js';
import { simpleInfo } from './template.js';