@repobit/dex-launch 1.5.0 → 2.0.0

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,19 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.0.0](https://github.com/bitdefender/dex-core/compare/@repobit/dex-launch@1.5.0...@repobit/dex-launch@2.0.0) (2025-05-13)
7
+
8
+
9
+ ### ⚠ BREAKING CHANGES
10
+
11
+ * **DEX-21820:** refactored Target to require initialisation
12
+
13
+ ### Features
14
+
15
+ * **DEX-21820:** refactored Target to require initialisation ([398be98](https://github.com/bitdefender/dex-core/commit/398be98f6d90f808bbeac409cdb1cb39dd03a705))
16
+
17
+
18
+
6
19
  ## [1.5.0](https://github.com/bitdefender/dex-core/compare/@repobit/dex-launch@1.4.1...@repobit/dex-launch@1.5.0) (2025-05-12)
7
20
 
8
21
 
package/README.md CHANGED
@@ -67,6 +67,8 @@ If one wishes to use both Launch and Target in the same project, I recommend usi
67
67
  import Launch from '@repobit/dex-launch';
68
68
  import Target from '@repobit/dex-target';
69
69
 
70
+ const target = new Target();
71
+
70
72
  try {
71
73
  await Launch.load('prod');
72
74
  } catch (e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@repobit/dex-launch",
3
- "version": "1.5.0",
3
+ "version": "2.0.0",
4
4
  "description": "Client for Adobe Launch",
5
5
  "author": "Constantin Ioan Mihai <iconstantin@bitdefender.com>",
6
6
  "homepage": "https://github.com/bitdefender/dex-core#readme",
@@ -36,5 +36,5 @@
36
36
  "volta": {
37
37
  "node": "22.14.0"
38
38
  },
39
- "gitHead": "cac3128091c62b4905b3625f23ee357093465256"
39
+ "gitHead": "bec7c5658dc80875f3e2d7872e467f74c32e41fd"
40
40
  }