@yarn-tool/static-file 1.0.96 → 1.0.100

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,56 @@
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.100](https://github.com/bluelovers/ws-yarn-workspaces/compare/@yarn-tool/static-file@1.0.99...@yarn-tool/static-file@1.0.100) (2022-05-11)
7
+
8
+
9
+ ### ✨ Features
10
+
11
+ * set jest maxWorkers = 1 ([0600624](https://github.com/bluelovers/ws-yarn-workspaces/commit/0600624f9e606215d7cb178e3c9fc95d39eb398f))
12
+
13
+
14
+ ### ♻️ Chores
15
+
16
+ * update deps ([6f226ac](https://github.com/bluelovers/ws-yarn-workspaces/commit/6f226acfd22f0b213eaa8a84886f8391284b1fcf))
17
+
18
+
19
+
20
+
21
+
22
+ ## [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)
23
+
24
+
25
+ ### 🔖 Miscellaneous
26
+
27
+ * . ([7e31733](https://github.com/bluelovers/ws-yarn-workspaces/commit/7e31733febde1a879ded2feba01ff679874c4b4b))
28
+ * . ([ceb7f75](https://github.com/bluelovers/ws-yarn-workspaces/commit/ceb7f7519ffca1c219539e8056f1d14f77e96e51))
29
+
30
+
31
+
32
+
33
+
34
+ ## [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)
35
+
36
+
37
+ ### ♻️ Chores
38
+
39
+ * **deps:** update deps ([109c9d1](https://github.com/bluelovers/ws-yarn-workspaces/commit/109c9d1b437063d069a9aaf5f5b9b15da4d5c76f))
40
+
41
+
42
+
43
+
44
+
45
+ ## [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)
46
+
47
+
48
+ ### ♻️ Chores
49
+
50
+ * **deps:** update deps ([109c9d1](https://github.com/bluelovers/ws-yarn-workspaces/commit/109c9d1b437063d069a9aaf5f5b9b15da4d5c76f))
51
+
52
+
53
+
54
+
55
+
6
56
  ## [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)
7
57
 
8
58
 
@@ -30,13 +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
39
+ - uses: actions/checkout@main
35
40
  with:
36
41
  fetch-depth: 2
37
- - uses: actions/setup-node@master
42
+ - name: Set up Node.js ${{ matrix.node-version }}
43
+ uses: actions/setup-node@main
38
44
  with:
39
- node-version: 17
45
+ node-version: ${{ matrix.node-version }}
40
46
  - name: get yarn cache dir
41
47
  id: yarn-cache
42
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
@@ -59,9 +59,10 @@ console.info(`- cwd: ${process.cwd()}`);
59
59
  module.exports = {
60
60
  globals: {
61
61
  'ts-jest': {
62
-
62
+ //tsconfig: 'tsconfig.spec.json',
63
63
  },
64
64
  },
65
+ maxWorkers: 1,
65
66
  clearMocks: true,
66
67
  passWithNoTests: true,
67
68
  moduleFileExtensions: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yarn-tool/static-file",
3
- "version": "1.0.96",
3
+ "version": "1.0.100",
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",
29
- "tslib": "^2.3.1"
28
+ "fs-extra": "^10.1.0",
29
+ "tslib": "^2"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "gitHead": "b7e0db984fe5afa1876445cd29dc5e536b3ff400"
34
+ "gitHead": "58acad356d9aeaa8fcdf2455741991b89b38a751"
35
35
  }