@infomaximum/package-cli 2.17.0 → 2.17.2
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,15 @@
|
|
|
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.17.2](https://github.com/Infomaximum/package-cli/compare/v2.17.1...v2.17.2) (2025-03-07)
|
|
6
|
+
|
|
7
|
+
### [2.17.1](https://github.com/Infomaximum/package-cli/compare/v2.17.0...v2.17.1) (2025-03-07)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* исправлено отсутствие , ([71582c2](https://github.com/Infomaximum/package-cli/commit/71582c208132ca0f84b036598235dc563a6226ef))
|
|
13
|
+
|
|
5
14
|
## [2.17.0](https://github.com/Infomaximum/package-cli/compare/v2.16.1...v2.17.0) (2025-03-07)
|
|
6
15
|
|
|
7
16
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const INTEGRATION_PACKAGE_JSON_TEMPLATE = "{\n \"name\": \"template_integration\",\n \"version\": \"1.0.0\",\n \"main\": \"src/index.ts\",\n \"scripts\": {\n \"build\": \"im-package-cli integration build\",\n \"build:script\": \"im-package-cli integration build --type=script\",\n \"dev\": \"im-package-cli integration build --watch\",\n \"serve\": \"im-package-cli integration build --watch --fetchToServer\"
|
|
1
|
+
export declare const INTEGRATION_PACKAGE_JSON_TEMPLATE = "{\n \"name\": \"template_integration\",\n \"version\": \"1.0.0\",\n \"main\": \"src/index.ts\",\n \"scripts\": {\n \"build\": \"im-package-cli integration build\",\n \"build:script\": \"im-package-cli integration build --type=script\",\n \"dev\": \"im-package-cli integration build --watch\",\n \"serve\": \"im-package-cli integration build --watch --fetchToServer\",\n \"lint\": \"tsc --noEmit && eslint src/ --ext .ts,.tsx --quiet\",\n \"test\": \"vitest --run\",\n \"test:coverage\": \"vitest --run --coverage\",\n \"test:ui\": \"vitest --ui\"\n },\n \"devDependencies\": {\n \"@babel/core\": \"^7.26.9\",\n \"@babel/preset-env\": \"^7.26.9\",\n \"@babel/preset-typescript\": \"^7.26.0\",\n \"@eslint/js\": \"^9.19.0\",\n \"@infomaximum/integration-sdk\": \"^{{integrationSdkVersion}}\",\n \"@infomaximum/package-cli\": \"^{{packageCliVersion}}\",\n \"@types/node\": \"^0\",\n \"core-js\": \"^3.41.0\",\n \"dotenv\": \"^16.4.7\",\n \"eslint\": \"^9.19.0\",\n \"globals\": \"^15.14.0\",\n \"typescript\": \"^5.7.2\",\n \"typescript-eslint\": \"^8.22.0\",\n \"vitest\": \"^3.0.4\",\n \"@vitest/coverage-v8\": \"3.0.7\",\n \"@vitest/ui\": \"3.0.7\"\n }\n}\n";
|
|
@@ -9,7 +9,7 @@ export const INTEGRATION_PACKAGE_JSON_TEMPLATE = `\
|
|
|
9
9
|
"build": "im-package-cli integration build",
|
|
10
10
|
"build:script": "im-package-cli integration build --type=script",
|
|
11
11
|
"dev": "im-package-cli integration build --watch",
|
|
12
|
-
"serve": "im-package-cli integration build --watch --fetchToServer"
|
|
12
|
+
"serve": "im-package-cli integration build --watch --fetchToServer",
|
|
13
13
|
"lint": "tsc --noEmit && eslint src/ --ext .ts,.tsx --quiet",
|
|
14
14
|
"test": "vitest --run",
|
|
15
15
|
"test:coverage": "vitest --run --coverage",
|