@yarn-tool/static-file 1.0.82 → 1.0.83

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,17 @@
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.83](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.82...@yarn-tool/static-file@1.0.83) (2021-12-27)
7
+
8
+
9
+ ### 🐛 Bug Fixes
10
+
11
+ * update setting for ci ([e54a152](https://github.com/bluelovers/ws-yarn-workspaces/commit/e54a15216b3c62ae42e84e9b4c56230f7a75f5fc))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.0.82](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.81...@yarn-tool/static-file@1.0.82) (2021-12-27)
7
18
 
8
19
 
@@ -21,10 +21,11 @@ jobs:
21
21
  node-version: 16
22
22
  - name: install
23
23
  run: |
24
- npm i -g typescript@next ts-jest
25
24
  yarn install --frozen-lockfile
26
- - uses: artiomtr/jest-coverage-report-action@master
25
+ yarn add -W typescript@next jest ts-jest ts-node ynpx lerna
26
+ - uses: artiomtr/jest-coverage-report-action@v2.0-rc.6
27
27
  with:
28
28
  github-token: ${{ secrets.GITHUB_TOKEN }}
29
29
  package-manager: yarn
30
30
  # threshold: 80 # optional parameter
31
+ test-script: npx jest --silent --ci --coverage=false --coverageReporters="text" --coverageReporters="text-summary"
@@ -94,9 +94,11 @@ module.exports = {
94
94
  collectCoverage: false,
95
95
  coveragePathIgnorePatterns: [
96
96
  '/node_modules/',
97
- '**/node_modules/',
98
- '**/__snapshots__/',
99
- '**/__tests__/',
97
+ '/__snapshots__/',
98
+ '/__tests__/',
99
+ //'**/node_modules/',
100
+ //'**/__snapshots__/',
101
+ //'**/__tests__/',
100
102
  ],
101
103
  /**
102
104
  * https://github.com/facebook/jest/issues/9771#issuecomment-872764344
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yarn-tool/static-file",
3
- "version": "1.0.82",
3
+ "version": "1.0.83",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/bluelovers/ws-yarn-workspaces#readme",
6
6
  "bugs": {
@@ -31,5 +31,5 @@
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "3869f3c0a38d89ef1792f6047ce8382a51966cd2"
34
+ "gitHead": "8ab770a04271b5c56594af452dbbb82c00b2b5a2"
35
35
  }