Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
274bffb318 | |||
1ed33efec1 |
@ -1,5 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-10-02 - 1.0.9 - fix(infohtml)
|
||||||
|
Refactor infohtml module and fix import paths
|
||||||
|
|
||||||
|
- Refactored ts_infohtml module.
|
||||||
|
- Fixed incorrect import paths in ts_infohtml module.
|
||||||
|
- Ensured that the InfoHtml class and related templates are properly imported and used.
|
||||||
|
|
||||||
## 2024-10-02 - 1.0.8 - fix(core)
|
## 2024-10-02 - 1.0.8 - fix(core)
|
||||||
Maintain dependencies, update metadata
|
Maintain dependencies, update metadata
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@serve.zone/platformclient",
|
"name": "@serve.zone/platformclient",
|
||||||
"version": "1.0.8",
|
"version": "1.0.9",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "a module that makes it really easy to use the serve.zone platform inside your app",
|
"description": "a module that makes it really easy to use the serve.zone platform inside your app",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@serve.zone/platformclient',
|
name: '@serve.zone/platformclient',
|
||||||
version: '1.0.8',
|
version: '1.0.9',
|
||||||
description: 'a module that makes it really easy to use the serve.zone platform inside your app'
|
description: 'a module that makes it really easy to use the serve.zone platform inside your app'
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import * as plugins from '../plugins.js';
|
import * as plugins from '../ts/plugins.js';
|
||||||
|
|
||||||
import { simpleInfo } from './template.js';
|
import { simpleInfo } from './template.js';
|
||||||
|
|
5
ts_infohtml/plugins.ts
Normal file
5
ts_infohtml/plugins.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import * as smartntml from '@push.rocks/smartntml';
|
||||||
|
|
||||||
|
export {
|
||||||
|
smartntml,
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
import * as plugins from '../plugins.js';
|
import * as plugins from './plugins.js';
|
||||||
import { type IHtmlInfoOptions } from './classes.infohtml.js';
|
import { type IHtmlInfoOptions } from './classes.infohtml.js';
|
||||||
|
|
||||||
export const simpleInfo = async (
|
export const simpleInfo = async (
|
Reference in New Issue
Block a user