@tramvai/cli 6.64.1 → 6.65.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/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "@tramvai/cli",
3
- "version": "6.64.1",
3
+ "version": "6.65.0",
4
4
  "description": "Cli инструмент для сборки и запуска приложений",
5
+ "engines": {
6
+ "node": ">=20.18.1"
7
+ },
5
8
  "files": [
6
9
  "src",
7
10
  "lib",
@@ -67,17 +70,17 @@
67
70
  "@tinkoff/minicss-class-generator": "0.6.1",
68
71
  "@tinkoff/package-manager-wrapper": "0.5.2",
69
72
  "@tinkoff/request-core": "^0.10.0",
70
- "@tinkoff/request-plugin-protocol-http": "^0.12.1",
73
+ "@tinkoff/request-plugin-protocol-http": "0.15.0",
71
74
  "@tinkoff/request-plugin-retry": "^0.3.0",
72
75
  "@tinkoff/utils": "^2.1.3",
73
76
  "@tinkoff/webpack-dedupe-plugin": "5.0.0",
74
- "@tramvai/api": "6.64.1",
77
+ "@tramvai/api": "6.65.0",
75
78
  "@tramvai/build": "7.2.0",
76
- "@tramvai/plugin-babel-transpiler": "6.64.1",
77
- "@tramvai/plugin-swc-transpiler": "6.64.1",
78
- "@tramvai/plugin-webpack-builder": "6.64.1",
79
- "@tramvai/plugin-webpack-pwa": "6.64.1",
80
- "@tramvai/react": "6.64.1",
79
+ "@tramvai/plugin-babel-transpiler": "6.65.0",
80
+ "@tramvai/plugin-swc-transpiler": "6.65.0",
81
+ "@tramvai/plugin-webpack-builder": "6.65.0",
82
+ "@tramvai/plugin-webpack-pwa": "6.65.0",
83
+ "@tramvai/react": "6.65.0",
81
84
  "@tramvai/tools-check-versions": "0.8.0",
82
85
  "@tramvai/tools-migrate": "0.10.2",
83
86
  "ajv": "^8.12.0",
@@ -158,6 +161,7 @@
158
161
  "text-table": "^0.2.0",
159
162
  "thread-loader": "^3.0.4",
160
163
  "tsconfig-paths-webpack-plugin": "^4.0.1",
164
+ "undici": "^7.16.0",
161
165
  "utility-types": "^3.10.0",
162
166
  "v8-compile-cache": "^2.3.0",
163
167
  "validate-npm-package-name": "^3.0.0",
@@ -209,8 +213,5 @@
209
213
  "image-webpack-loader": "^6.0.0",
210
214
  "sharp": "0.34.3"
211
215
  },
212
- "license": "Apache-2.0",
213
- "engines": {
214
- "node": ">=16.0.0"
215
- }
216
+ "license": "Apache-2.0"
216
217
  }
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @jest-environment jsdom
2
+ * @jest-environment @tramvai/test-unit-jest/lib/jsdom-environment
3
3
  */
4
4
  import { testComponent } from '@tramvai/test-react';
5
5
  import { Header } from './Header';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @jest-environment jsdom
2
+ * @jest-environment @tramvai/test-unit-jest/lib/jsdom-environment
3
3
  */
4
4
  import React from 'react';
5
5
  import { testComponent } from '@tramvai/test-react';
@@ -1,7 +1,6 @@
1
1
  import { start } from '@tramvai/cli';
2
2
  import { getStaticUrl } from '@tramvai/test-integration';
3
3
  import type { PromiseType } from 'utility-types';
4
- import fetch from 'node-fetch';
5
4
 
6
5
  let app: PromiseType<ReturnType<typeof start>>;
7
6
  let clientCode: string;