Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
fb15f62189 | |||
f5d9f05bf2 | |||
8bc25e1045 | |||
d3b74d5766 | |||
cdaaebde42 | |||
45f9f6f891 | |||
37c48a6803 | |||
b4b01cc319 |
19
changelog.md
19
changelog.md
@ -1,5 +1,24 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-01-14 - 1.3.4 - fix(dependencies)
|
||||||
|
Corrected build script and updated @consent.software/webclient dependency version
|
||||||
|
|
||||||
|
- Corrected the build script entry in package.json.
|
||||||
|
- Updated @consent.software/webclient dependency to version ^1.1.0.
|
||||||
|
|
||||||
|
## 2025-01-14 - 1.3.3 - fix(package.json)
|
||||||
|
Fixed incorrect main and typings fields, replacing with exports field
|
||||||
|
|
||||||
|
- Updated package.json to use the 'exports' field instead of 'main' and 'typings' for module entry points
|
||||||
|
|
||||||
|
## 2025-01-14 - 1.3.2 - fix(core)
|
||||||
|
No code changes detected, maintain current state.
|
||||||
|
|
||||||
|
|
||||||
|
## 2025-01-14 - 1.3.1 - fix(package setup)
|
||||||
|
Fix package metadata and dependency consistency
|
||||||
|
|
||||||
|
|
||||||
## 2025-01-14 - 1.3.0 - feat(elements)
|
## 2025-01-14 - 1.3.0 - feat(elements)
|
||||||
Enhance consent management components with advanced styling and interaction
|
Enhance consent management components with advanced styling and interaction
|
||||||
|
|
||||||
|
11
package.json
11
package.json
@ -1,21 +1,22 @@
|
|||||||
{
|
{
|
||||||
"name": "@consent.software/catalog",
|
"name": "@consent.software/catalog",
|
||||||
"version": "1.3.0",
|
"version": "1.3.4",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.",
|
"description": "A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.",
|
||||||
"main": "dist_ts_web/index.js",
|
"exports": {
|
||||||
"typings": "dist_ts_web/index.d.ts",
|
".": "./dist_ts_web/index.js"
|
||||||
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "npm run build",
|
"test": "npm run build",
|
||||||
"build": "tsbuild element --allowimplicitany && tsbundle element --production",
|
"build": "tsbuild tsfolders --allowimplicitany && tsbundle element --production",
|
||||||
"watch": "tswatch element"
|
"watch": "tswatch element"
|
||||||
},
|
},
|
||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@consent.software/interfaces": "^1.0.11",
|
"@consent.software/interfaces": "^1.0.11",
|
||||||
"@consent.software/webclient": "^1.0.14",
|
"@consent.software/webclient": "^1.1.0",
|
||||||
"@push.rocks/smartdelay": "^3.0.5",
|
"@push.rocks/smartdelay": "^3.0.5",
|
||||||
"lit": "^3.2.1"
|
"lit": "^3.2.1"
|
||||||
},
|
},
|
||||||
|
1265
pnpm-lock.yaml
generated
1265
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@consent.software/catalog',
|
name: '@consent.software/catalog',
|
||||||
version: '1.3.0',
|
version: '1.3.4',
|
||||||
description: 'A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.'
|
description: 'A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.'
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user