@yarn-tool/static-file 2.0.14 → 2.0.16
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 +25 -0
- package/file/gitignore +2 -0
- package/file/ws-root/jest-preset.js +9 -2
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,31 @@
|
|
|
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.16](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@2.0.15...@yarn-tool/static-file@2.0.16) (2022-12-09)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### 📌 Dependencies
|
|
11
|
+
|
|
12
|
+
* update deps ([fe41874](https://github.com/bluelovers/ws-yarn-workspaces/commit/fe41874d6fd01f5f2b773aa085b80ee2d0683edc))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [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)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### ✨ Features
|
|
21
|
+
|
|
22
|
+
* support type ([f39fcc8](https://github.com/bluelovers/ws-yarn-workspaces/commit/f39fcc82d9e7f9bf53554c2ff8698d7e5e48232f))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### 🔖 Miscellaneous
|
|
26
|
+
|
|
27
|
+
* . ([b8a491a](https://github.com/bluelovers/ws-yarn-workspaces/commit/b8a491a3db776f34f535cab74d5184c88b4562ed))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
6
31
|
## [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
32
|
|
|
8
33
|
|
package/file/gitignore
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
const { mixinJestConfig } = require('@bluelovers/jest-config');
|
|
2
2
|
|
|
3
|
-
|
|
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.
|
|
3
|
+
"version": "2.0.16",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/bluelovers/ws-yarn-workspaces/tree/master/packages/@yarn-tool/static-file#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"lint": "npx eslint **/*.ts",
|
|
20
20
|
"test": "echo \"Error: no test specified\"",
|
|
21
21
|
"test:jest": "jest --passWithNoTests",
|
|
22
|
+
"test:jest:coverage": "yarn run test:jest -- --coverage",
|
|
22
23
|
"test:jest:snapshot": "yarn run test:jest -- -u",
|
|
23
24
|
"test:snapshot": "yarn run test -- -u",
|
|
24
25
|
"test:tsd": "ynpx tsd",
|
|
@@ -27,14 +28,15 @@
|
|
|
27
28
|
"prepublishOnly": "echo prepublishOnly",
|
|
28
29
|
"postpublish_": "git commit -m \"chore(release): publish\" .",
|
|
29
30
|
"ncu": "npx yarn-tool ncu -u",
|
|
30
|
-
"sort-package-json": "npx yarn-tool sort"
|
|
31
|
+
"sort-package-json": "npx yarn-tool sort",
|
|
32
|
+
"tsc:showConfig": "ynpx get-current-tsconfig -p"
|
|
31
33
|
},
|
|
32
34
|
"dependencies": {
|
|
33
|
-
"fs-extra": "^
|
|
35
|
+
"fs-extra": "^11.1.0",
|
|
34
36
|
"tslib": ">=2"
|
|
35
37
|
},
|
|
36
38
|
"publishConfig": {
|
|
37
39
|
"access": "public"
|
|
38
40
|
},
|
|
39
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "b13fc0899f6dc27420cc74cd6dc71347d5e1d511"
|
|
40
42
|
}
|