Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
ded4667
fix: improve consent manager loading and script management
Mar 20, 2026
d1111fc
fix: update registry URL in package.json for consistency
Mar 20, 2026
85c350a
fix: remove npm registry update step from CI workflow
Mar 20, 2026
e8754aa
fix: clean up package-lock.json by removing unused dependencies and e…
Mar 20, 2026
ce8ad01
fix: add hasInstallScript property to package-lock.json for improved …
Mar 20, 2026
6e1daee
fix: remove npm registry update step from release workflow
Mar 20, 2026
ec90e6b
fix: fix package-lock.json
Mar 20, 2026
b27960e
fix: update lerna configuration and add workspaces support in package…
Mar 20, 2026
d533e32
fix: add npm registry update step to release and continuous workflows
Mar 20, 2026
7ff600d
fix: remove workspaces support and update package paths in lerna conf…
Mar 20, 2026
d04c27e
fix: update node version and setup-node action in continuous workflow
Mar 20, 2026
d74a4d3
fix: update TypeScript and Jest versions, adjust tsconfig settings
Mar 20, 2026
9afbec0
fix: update rollup configuration and dependencies for Angular 17 comp…
Mar 23, 2026
cf6685e
chore(): update build artifacts
Mar 23, 2026
1327cf0
chore(release): publish v3.17.1
Mar 23, 2026
0c070ce
fix: update Jest tests to use jest.spyOn and add jsdom test environment
Mar 23, 2026
c199a87
Merge remote-tracking branch 'origin/fix-consent-managment-load' into…
Mar 23, 2026
0a41593
fix: update Jest tests to use jest.spyOn and add jsdom test environment
Mar 23, 2026
7a0a0f3
chore(): update build artifacts
Mar 23, 2026
9abf5a8
chore(release): publish v3.17.2
Mar 23, 2026
8c1cc8a
fix: remove unnecessary engine and override fields from package.json …
Mar 23, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '24.x'
registry-url: 'https://registry.npmjs.org'

- name: Restore lerna
Expand Down
11 changes: 5 additions & 6 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{
"version": "3.17.0",
"version": "3.17.2",
"granularPathspec": false,
"packages": [
"packages/*"
],
"npmClient": "npm",
"command": {
"version": {
"message": "chore(release): publish %s"
Expand All @@ -19,5 +17,6 @@
"**/*.test.ts",
"**/*.e2e.ts",
"**/*.md"
]
}
],
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
Loading
Loading