@linagora/linid-im-front-corelib 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -67,8 +67,13 @@ jobs:
67
67
  with:
68
68
  fetch-depth: 0
69
69
 
70
- - name: Fetch tags
71
- run: git fetch --tags
70
+ - name: Fetch all tags
71
+ run: git fetch --tags --force
72
+
73
+ - name: Checkout latest tag
74
+ run: |
75
+ LATEST_TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
76
+ git checkout $LATEST_TAG
72
77
 
73
78
  - name: Setup Node.js and pnpm
74
79
  uses: ./.github/actions/setup-node-pnpm
package/CHANGELOG.md ADDED
@@ -0,0 +1,31 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ### [0.0.3](https://github.com/linagora/linid-im-front-corelib/compare/v0.0.2...v0.0.3) (2025-11-28)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * retrieve valid tag for npm release ([f295e3c](https://github.com/linagora/linid-im-front-corelib/commit/f295e3c54d27b6f42970b50ccb6fd856966aa776))
11
+
12
+ ### [0.0.2](https://github.com/linagora/linid-im-front-corelib/compare/v0.0.1...v0.0.2) (2025-11-28)
13
+
14
+
15
+ ### Features
16
+
17
+ * add module lifecycle skeleton class ([c2332e2](https://github.com/linagora/linid-im-front-corelib/commit/c2332e25fee58a148faaf63ec5c1ebf2b9ea7b17))
18
+ * add module lifecycle type definitions ([6c6beb3](https://github.com/linagora/linid-im-front-corelib/commit/6c6beb3675f6810f2f7d106f1572d98111df4af2))
19
+ * export module lifecycle types and utilities ([691a2ec](https://github.com/linagora/linid-im-front-corelib/commit/691a2ec86f472cadd3cb1cbe80525de25f4bb995))
20
+ * expose source files via exports field ([cf87a3d](https://github.com/linagora/linid-im-front-corelib/commit/cf87a3d8626f399675c52419c2bff7d46b0e3521))
21
+ * load zone component with module-federation/enhanced ([858ffce](https://github.com/linagora/linid-im-front-corelib/commit/858ffce1f91aca52506559b5eb070a96e0a42fad))
22
+ * migrate project to use pnpm ([d00cb63](https://github.com/linagora/linid-im-front-corelib/commit/d00cb638c311058ff5bf1dadeac799df1d2ebc45))
23
+ * setup library ([774e827](https://github.com/linagora/linid-im-front-corelib/commit/774e8279334c087407615ff4e1217edbc206eeda))
24
+ * setup pull-request workflow ([1094c6a](https://github.com/linagora/linid-im-front-corelib/commit/1094c6a3340fc3e8d57b2b6f94dcf938cdecca46))
25
+ * setup release workflow ([18a9c0b](https://github.com/linagora/linid-im-front-corelib/commit/18a9c0bc98f9cdb9e2c007a71e0ea500c684f83b))
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * **lint:** warning message of missing jsdoc in ArrowFunctionExpression ([a95b065](https://github.com/linagora/linid-im-front-corelib/commit/a95b0657d9afe69ccf08a8d9da22cdd1007262ae))
31
+ * remove redundant config with the modules.json file ([f3614cc](https://github.com/linagora/linid-im-front-corelib/commit/f3614cc6bb4a97574ccf09543b46fb5b25fcdc24))
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linagora/linid-im-front-corelib",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Core library of the LinID Identity Manager project. Provides shared types, services, components, and utilities for front-end and plugin, enabling consistent integration across the LinID ecosystem.",
5
5
  "type": "module",
6
6
  "main": "dist/core-lib.umd.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linagora/linid-im-front-corelib",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Core library of the LinID Identity Manager project. Provides shared types, services, components, and utilities for front-end and plugin, enabling consistent integration across the LinID ecosystem.",
5
5
  "type": "module",
6
6
  "main": "dist/core-lib.umd.js",