@infomaximum/package-cli 2.12.0-rc.1 → 2.13.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
|
@@ -2,6 +2,36 @@
|
|
|
2
2
|
|
|
3
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
4
|
|
|
5
|
+
## [2.13.0](https://github.com/Infomaximum/package-cli/compare/v2.12.0...v2.13.0) (2025-02-27)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* добавлен скрипт по сборке интеграции в js файл ([4ea5bc6](https://github.com/Infomaximum/package-cli/commit/4ea5bc6eb19fc80433de349c9d977fffe1c47eb4))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **template:** модификатор доступа ([95e9190](https://github.com/Infomaximum/package-cli/commit/95e91903c73a92e7e27f1507dd832a530a75a5a5))
|
|
16
|
+
|
|
17
|
+
## [2.12.0](https://github.com/Infomaximum/package-cli/compare/v2.11.0...v2.12.0) (2025-02-27)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* добавлена команда для автопересборки скрипта интеграции ([986f73b](https://github.com/Infomaximum/package-cli/commit/986f73b4eeedc5370fb5eca5ecdee5d6e9769614))
|
|
23
|
+
* добавлена команда инициализации проекта с интеграцией ([f8029a5](https://github.com/Infomaximum/package-cli/commit/f8029a5bfa1d358edaf076c0331687f20f577927))
|
|
24
|
+
* добавлена сборка интеграции ([59e10db](https://github.com/Infomaximum/package-cli/commit/59e10db99bcdee56f64d3e937def4db0fe05cb6d))
|
|
25
|
+
* добавлена сборка скрипта без сборки пакета ([45a95d0](https://github.com/Infomaximum/package-cli/commit/45a95d0d9354bffc308065bd66e390afc20d660f))
|
|
26
|
+
* optimization build ([72afabb](https://github.com/Infomaximum/package-cli/commit/72afabbf0011cf215fc5ff74e40bd87809ba7c51))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* актуализация шаблона ([99a2c8a](https://github.com/Infomaximum/package-cli/commit/99a2c8abb22b481a9ecc9c6f74d720c7890990ff))
|
|
32
|
+
* ключ интеграции ([d88502f](https://github.com/Infomaximum/package-cli/commit/d88502fec7abdcda82b01418c2e473995e19e2f8))
|
|
33
|
+
* типы из @infomaximum/integration-sdk ([85256f4](https://github.com/Infomaximum/package-cli/commit/85256f43d1a8d3aa9489c7a6ce48f86577439ccb))
|
|
34
|
+
|
|
5
35
|
## [2.11.0](https://github.com/Infomaximum/package-cli/compare/v2.10.4...v2.11.0) (2024-10-24)
|
|
6
36
|
|
|
7
37
|
|
|
@@ -7,6 +7,7 @@ export const INTEGRATION_PACKAGE_JSON_TEMPLATE = `\
|
|
|
7
7
|
"main": "src/index.ts",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "im-package-cli integration build",
|
|
10
|
+
"build:script": "im-package-cli integration build --type=script",
|
|
10
11
|
"dev": "im-package-cli integration build --watch",
|
|
11
12
|
"lint": "tsc --noEmit && eslint src/ --ext .ts,.tsx --quiet",
|
|
12
13
|
"test": "vitest --run"
|
|
@@ -17,7 +17,7 @@ export class Definition implements IDefinition<WidgetSettings, IGroupSettings> {
|
|
|
17
17
|
|
|
18
18
|
public fillSettings: IFillSettings<WidgetSettings> = fillSettings;
|
|
19
19
|
|
|
20
|
-
getLocalMigrateVersions(): string[] {
|
|
20
|
+
public getLocalMigrateVersions(): string[] {
|
|
21
21
|
return [];
|
|
22
22
|
}
|
|
23
23
|
}
|