Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
217ea3e9d4 | |||
8263a4fe73 | |||
340582e042 | |||
a8e07f9682 |
12
changelog.md
12
changelog.md
@ -1,5 +1,17 @@
|
|||||||
# Changelog
|
# 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
|
||||||
|
|
||||||
|
- Update readme examples to better illustrate custom element usage
|
||||||
|
- Clarify CssManager theming and API usage in documentation
|
||||||
|
- Ensure package.json and commitinfo reflect accurate project details
|
||||||
|
|
||||||
## 2025-07-06 - 2.1.0 - feat(DeesElement)
|
## 2025-07-06 - 2.1.0 - feat(DeesElement)
|
||||||
Add invocation of the themeChanged hook in connectedCallback
|
Add invocation of the themeChanged hook in connectedCallback
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@design.estate/dees-element",
|
"name": "@design.estate/dees-element",
|
||||||
"version": "2.1.0",
|
"version": "2.1.2",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A library for creating custom elements extending the lit element class with additional functionalities.",
|
"description": "A library for creating custom elements extending the lit element class with additional functionalities.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@ -10,7 +10,7 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/ --web)",
|
"test": "(tstest test/ --web)",
|
||||||
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
|
"build": "(tsbuild tsfolders --web --allowimplicitany && tsbundle npm)",
|
||||||
"buildDocs": "tsdoc"
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@design.estate/dees-element',
|
name: '@design.estate/dees-element',
|
||||||
version: '2.1.0',
|
version: '2.1.2',
|
||||||
description: 'A library for creating custom elements extending the lit element class with additional functionalities.'
|
description: 'A library for creating custom elements extending the lit element class with additional functionalities.'
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user