@tramvai/test-integration 6.68.4 → 6.77.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.
@@ -22,7 +22,7 @@ const buildCli = async (targetOrConfig, { env, logger = console, ...cliOptions }
22
22
  stderr,
23
23
  // build cache made tests unstable in CI, because of cache writing process are async,
24
24
  // and there is no way to wait this process (`idleTimeoutForInitialStore: 0` helps sometimes, but no guarantees)
25
- fileCache: !ciInfo.isCi,
25
+ fileCache: cliOptions.fileCache ?? !ciInfo.isCi,
26
26
  // faster builds with debug flag, sm still will be disabled by default
27
27
  sourceMap: cliOptions.sourceMap ?? false,
28
28
  ...(typeof targetOrConfig === 'string'
@@ -31,7 +31,7 @@ const buildCli = async (targetOrConfig, { env, logger = console, ...cliOptions }
31
31
  stderr,
32
32
  // build cache made tests unstable in CI, because of cache writing process are async,
33
33
  // and there is no way to wait this process (`idleTimeoutForInitialStore: 0` helps sometimes, but no guarantees)
34
- fileCache: !ciInfo.isCi,
34
+ fileCache: cliOptions.fileCache ?? !ciInfo.isCi,
35
35
  // faster builds with debug flag, sm still will be disabled by default
36
36
  sourceMap: cliOptions.sourceMap ?? false,
37
37
  ...(typeof targetOrConfig === 'string'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tramvai/test-integration",
3
- "version": "6.68.4",
3
+ "version": "6.77.2",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
@@ -20,15 +20,15 @@
20
20
  "@types/wait-on": "^5.2.0"
21
21
  },
22
22
  "dependencies": {
23
- "@tinkoff/mocker": "6.1.0",
24
- "@tramvai/test-helpers": "6.68.4",
23
+ "@tinkoff/mocker": "6.1.1",
24
+ "@tramvai/test-helpers": "6.77.2",
25
25
  "env-ci": "^5.0.2",
26
26
  "utility-types": "^3.10.0",
27
27
  "wait-on": "^5.3.0"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "@tinkoff/utils": "^2.1.2",
31
- "@tramvai/cli": "6.68.4",
31
+ "@tramvai/cli": "6.77.2",
32
32
  "tslib": "^2.4.0"
33
33
  },
34
34
  "license": "Apache-2.0",