@yarn-tool/static-file 1.0.95 → 1.0.99

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,51 @@
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.99](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.98...@yarn-tool/static-file@1.0.99) (2022-03-14)
7
+
8
+
9
+ ### 🔖 Miscellaneous
10
+
11
+ * . ([7e31733](https://github.com/bluelovers/ws-yarn-workspaces/commit/7e31733febde1a879ded2feba01ff679874c4b4b))
12
+ * . ([ceb7f75](https://github.com/bluelovers/ws-yarn-workspaces/commit/ceb7f7519ffca1c219539e8056f1d14f77e96e51))
13
+
14
+
15
+
16
+
17
+
18
+ ## [1.0.98](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.96...@yarn-tool/static-file@1.0.98) (2022-02-27)
19
+
20
+
21
+ ### ♻️ Chores
22
+
23
+ * **deps:** update deps ([109c9d1](https://github.com/bluelovers/ws-yarn-workspaces/commit/109c9d1b437063d069a9aaf5f5b9b15da4d5c76f))
24
+
25
+
26
+
27
+
28
+
29
+ ## [1.0.97](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.96...@yarn-tool/static-file@1.0.97) (2022-02-27)
30
+
31
+
32
+ ### ♻️ Chores
33
+
34
+ * **deps:** update deps ([109c9d1](https://github.com/bluelovers/ws-yarn-workspaces/commit/109c9d1b437063d069a9aaf5f5b9b15da4d5c76f))
35
+
36
+
37
+
38
+
39
+
40
+ ## [1.0.96](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.95...@yarn-tool/static-file@1.0.96) (2022-02-19)
41
+
42
+
43
+ ### ✨ Features
44
+
45
+ * add `fetch-depth` ([2be8500](https://github.com/bluelovers/ws-yarn-workspaces/commit/2be8500b42010151204744a7f52cb5248e5c7b06))
46
+
47
+
48
+
49
+
50
+
6
51
  ## [1.0.95](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.94...@yarn-tool/static-file@1.0.95) (2022-02-12)
7
52
 
8
53
 
@@ -30,11 +30,19 @@ jobs:
30
30
  build:
31
31
  runs-on: ubuntu-latest
32
32
  if: "!contains(github.event.head_commit.message, '[skip ci]')"
33
+
34
+ strategy:
35
+ matrix:
36
+ node-version: [ 17 ]
37
+
33
38
  steps:
34
- - uses: actions/checkout@master
35
- - uses: actions/setup-node@master
39
+ - uses: actions/checkout@main
36
40
  with:
37
- node-version: 17
41
+ fetch-depth: 2
42
+ - name: Set up Node.js ${{ matrix.node-version }}
43
+ uses: actions/setup-node@main
44
+ with:
45
+ node-version: ${{ matrix.node-version }}
38
46
  - name: get yarn cache dir
39
47
  id: yarn-cache
40
48
  run: echo "::set-output name=dir::$(yarn cache dir)"
@@ -15,19 +15,30 @@ jobs:
15
15
  if: "!contains(github.event.head_commit.message, '[skip ci]')"
16
16
  env:
17
17
  CI_JOB_NUMBER: 1
18
+
19
+ strategy:
20
+ matrix:
21
+ node-version: [ 17 ]
22
+
18
23
  steps:
19
- - uses: actions/checkout@v1
20
- - uses: actions/setup-node@master
24
+ - uses: actions/checkout@main
25
+ - name: Set up Node.js ${{ matrix.node-version }}
26
+ uses: actions/setup-node@main
21
27
  with:
22
- node-version: 16
28
+ node-version: ${{ matrix.node-version }}
23
29
  - name: install
24
30
  run: |
25
31
  yarn install --frozen-lockfile
26
32
  yarn run ci:install
27
33
  # yarn add -W typescript@next jest ts-jest ts-node ynpx lerna
28
- - uses: artiomtr/jest-coverage-report-action@v2.0.2
34
+ - uses: artiomtr/jest-coverage-report-action@main
29
35
  with:
30
36
  github-token: ${{ secrets.GITHUB_TOKEN }}
31
37
  package-manager: yarn
32
38
  # threshold: 80 # optional parameter
33
39
  test-script: npx jest --silent --ci --coverage=false --coverageReporters="text" --coverageReporters="text-summary"
40
+ - name: Upload coverage to Codecov
41
+ uses: codecov/codecov-action@master
42
+ with:
43
+ token: ${{ secrets.CODECOV_TOKEN }}
44
+ verbose: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yarn-tool/static-file",
3
- "version": "1.0.95",
3
+ "version": "1.0.99",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/bluelovers/ws-yarn-workspaces/tree/master/packages/@yarn-tool/static-file#readme",
6
6
  "bugs": {
@@ -25,11 +25,11 @@
25
25
  "sort-package-json": "npx yarn-tool sort"
26
26
  },
27
27
  "dependencies": {
28
- "fs-extra": "^10.0.0",
28
+ "fs-extra": "^10.0.1",
29
29
  "tslib": "^2.3.1"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "34aefa01fc720e1d0ff5fec28b951838799828c7"
34
+ "gitHead": "7b783c898c714abcf51de68292d5528732ca8ec3"
35
35
  }