Compare commits

..

2 Commits

Author SHA1 Message Date
217ea3e9d4 2.1.2
Some checks failed
Default (tags) / security (push) Failing after 12s
Default (tags) / test (push) Failing after 11s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-07-06 12:06:06 +00:00
8263a4fe73 fix(build): Update build script in package.json to include tsfolders in tsbuild command 2025-07-06 12:06:06 +00:00
3 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,10 @@
# 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

View File

@ -1,6 +1,6 @@
{
"name": "@design.estate/dees-element",
"version": "2.1.1",
"version": "2.1.2",
"private": false,
"description": "A library for creating custom elements extending the lit element class with additional functionalities.",
"main": "dist_ts/index.js",
@ -10,7 +10,7 @@
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
"build": "(tsbuild tsfolders --web --allowimplicitany && tsbundle npm)",
"buildDocs": "tsdoc"
},
"devDependencies": {

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@design.estate/dees-element',
version: '2.1.1',
version: '2.1.2',
description: 'A library for creating custom elements extending the lit element class with additional functionalities.'
}