@naturalcycles/dev-lib 13.48.3 → 13.49.1

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.
@@ -94,9 +94,9 @@ module.exports = {
94
94
  setupFilesAfterEnv,
95
95
  workerIdleMemoryLimit: '800MB', // workaround for this: https://github.com/facebook/jest/issues/11956
96
96
  collectCoverageFrom: [
97
- 'src/**/*.ts',
97
+ 'src/**/*.{ts,tsx}',
98
98
  '!**/__exclude/**',
99
- '!src/index.ts',
99
+ '!src/index.{ts,tsx}',
100
100
  '!src/test/**',
101
101
  '!src/typings/**',
102
102
  '!scripts/**',
@@ -111,9 +111,9 @@ module.exports = {
111
111
  '!**/*.script.ts',
112
112
  '!**/*.module.ts',
113
113
  '!**/*.mock.ts',
114
- '!**/*.page.ts',
115
- '!**/*.component.ts',
116
- '!**/*.modal.ts',
114
+ '!**/*.page.{ts,tsx}',
115
+ '!**/*.component.{ts,tsx}',
116
+ '!**/*.modal.{ts,tsx}',
117
117
  ],
118
118
  // default: ["clover", "json", "lcov", "text"]
119
119
  coverageReporters: ['clover', 'json', 'json-summary', 'lcov', !CI && 'text'].filter(Boolean),
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.resetTime = exports.mockTimeMillis = exports.mockTime = exports.MOCK_TS_2018_06_21 = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const timekeeper_1 = tslib_1.__importDefault(require("timekeeper"));
6
- exports.MOCK_TS_2018_06_21 = 1529539200;
6
+ exports.MOCK_TS_2018_06_21 = 1_529_539_200;
7
7
  /**
8
8
  * Locks time-related functions to return always same time.
9
9
  * For deterministic tests.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
- "version": "13.48.3",
3
+ "version": "13.49.1",
4
4
  "scripts": {
5
5
  "prepare": "husky",
6
6
  "tsn-debug": "tsn testScript.ts",