@yarn-tool/static-file 1.0.92 → 1.0.93

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
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.93](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.92...@yarn-tool/static-file@1.0.93) (2022-02-01)
7
+
8
+
9
+ ### ♻️ Chores
10
+
11
+ * use import('ts-jest').InitialOptionsTsJest ([13a111b](https://github.com/bluelovers/ws-yarn-workspaces/commit/13a111b1427dd128732b3c40341efdee43212cf1))
12
+
13
+
14
+ ### 🔖 Miscellaneous
15
+
16
+ * . ([c3a1167](https://github.com/bluelovers/ws-yarn-workspaces/commit/c3a116723a031e4b8ed68e659d7643e418f4ba37))
17
+
18
+
19
+
20
+
21
+
6
22
  ## [1.0.92](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.91...@yarn-tool/static-file@1.0.92) (2022-01-31)
7
23
 
8
24
 
@@ -30,7 +30,11 @@ function _requireResolve(name)
30
30
 
31
31
  }
32
32
 
33
- return result || require.resolve(name)
33
+ result = result || require.resolve(name);
34
+
35
+ console.info('[require.resolve]', name, '=>', result)
36
+
37
+ return result
34
38
  }
35
39
 
36
40
  const testExt = [
@@ -44,10 +48,20 @@ const testExt = [
44
48
  // 'cjs',
45
49
  ].join('|');
46
50
 
51
+ console.info(`jest.config`);
52
+ console.info(`- file: ${__filename}`);
53
+ console.info(`- cwd: ${process.cwd()}`);
54
+
47
55
  /**
48
- * @type { import('@jest/types').Config.InitialOptions }
56
+ * // @type { import('@jest/types').Config.InitialOptions }
57
+ * @type { import('ts-jest').InitialOptionsTsJest }
49
58
  */
50
59
  module.exports = {
60
+ globals: {
61
+ 'ts-jest': {
62
+
63
+ },
64
+ },
51
65
  clearMocks: true,
52
66
  passWithNoTests: true,
53
67
  moduleFileExtensions: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yarn-tool/static-file",
3
- "version": "1.0.92",
3
+ "version": "1.0.93",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/bluelovers/ws-yarn-workspaces/tree/master/packages/@yarn-tool/static-file#readme",
6
6
  "bugs": {
@@ -31,5 +31,5 @@
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "25ae2a845acacd4dae1df33c5c263caa331f54e5"
34
+ "gitHead": "06fdafdf2381935e0ea65e48216d81e994412baf"
35
35
  }