@yarn-tool/static-file 2.0.14 → 2.0.15

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,21 @@
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
+ ## [2.0.15](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@2.0.14...@yarn-tool/static-file@2.0.15) (2022-11-04)
7
+
8
+
9
+
10
+ ### ✨ Features
11
+
12
+ * support type ([f39fcc8](https://github.com/bluelovers/ws-yarn-workspaces/commit/f39fcc82d9e7f9bf53554c2ff8698d7e5e48232f))
13
+
14
+
15
+ ### 🔖 Miscellaneous
16
+
17
+ * . ([b8a491a](https://github.com/bluelovers/ws-yarn-workspaces/commit/b8a491a3db776f34f535cab74d5184c88b4562ed))
18
+
19
+
20
+
6
21
  ## [2.0.14](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@2.0.13...@yarn-tool/static-file@2.0.14) (2022-10-28)
7
22
 
8
23
 
package/file/gitignore CHANGED
@@ -221,3 +221,5 @@ dist/*.umd.*.*s
221
221
 
222
222
  !/.yarnrc.yml
223
223
  .turbo
224
+
225
+ !/.run/
@@ -1,5 +1,12 @@
1
1
  const { mixinJestConfig } = require('@bluelovers/jest-config');
2
2
 
3
- module.exports = mixinJestConfig({}, true, {
3
+ /**
4
+ * // @type { import('@jest/types').Config.InitialOptions }
5
+ * // @type { import('ts-jest').InitialOptionsTsJest }
6
+ * @type { import('ts-jest').JestConfigWithTsJest }
7
+ */
8
+ const jestConfig = mixinJestConfig({}, true, {
4
9
  file: __filename,
5
- })
10
+ });
11
+
12
+ module.exports = jestConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yarn-tool/static-file",
3
- "version": "2.0.14",
3
+ "version": "2.0.15",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/bluelovers/ws-yarn-workspaces/tree/master/packages/@yarn-tool/static-file#readme",
6
6
  "bugs": {
@@ -36,5 +36,5 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "39eb95e4e4843dc78aca551c0ed3cddcf88438e1"
39
+ "gitHead": "d3d9a1d2fc0fde3c33879283979bc2bbeb91cfea"
40
40
  }