Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mengdaming committed Sep 12, 2024
1 parent 40c91f4 commit 9a83ce0
Show file tree
Hide file tree
Showing 13 changed files with 3,691 additions and 2,262 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 22.x
- name: Yarn install
working-directory: typescript
run: yarn install
run: corepack yarn install
- name: Test
working-directory: typescript
run: yarn jest
run: corepack yarn jest
1 change: 1 addition & 0 deletions cpp/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,7 @@ Here are the main shortcuts available once TCR utility is running:
| `p` / `P` | Toggle on/off git auto-push |
| `l` / `L` | Pull from remote |
| `s` / `S` | Push to remote |
| `a` / `A` | Abort current command (when in driver role) |
| `q` / `Q` | Quit current role / Quit TCR |
| `?` | List available options |

Expand Down
2 changes: 1 addition & 1 deletion cpp/cmake/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cmake 3.30.0
cmake 3.30.3
1 change: 1 addition & 0 deletions go/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,7 @@ Here are the main shortcuts available once TCR utility is running:
| `p` / `P` | Toggle on/off git auto-push |
| `l` / `L` | Pull from remote |
| `s` / `S` | Push to remote |
| `a` / `A` | Abort current command (when in driver role) |
| `q` / `Q` | Quit current role / Quit TCR |
| `?` | List available options |
Expand Down
1 change: 1 addition & 0 deletions java/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ Here are the main shortcuts available once TCR utility is running:
| `p` / `P` | Toggle on/off git auto-push |
| `l` / `L` | Pull from remote |
| `s` / `S` | Push to remote |
| `a` / `A` | Abort current command (when in driver role) |
| `q` / `Q` | Quit current role / Quit TCR |
| `?` | List available options |

Expand Down
Binary file modified java/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion java/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
1 change: 1 addition & 0 deletions python/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,7 @@ Here are the main shortcuts available once TCR utility is running:
| `p` / `P` | Toggle on/off git auto-push |
| `l` / `L` | Pull from remote |
| `s` / `S` | Push to remote |
| `a` / `A` | Abort current command (when in driver role) |
| `q` / `Q` | Quit current role / Quit TCR |
| `?` | List available options |
Expand Down
8 changes: 4 additions & 4 deletions tcr/TCR.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# TCR - Test && (Commit || Revert)
# TCR - Test && Commit || Revert

## What is TCR

TCR is a programming workflow, which stands for **Test && (Commit || Revert)**.
Kent Beck and Oddmund Strømme came up with this concept
in [this post](https://medium.com/@kentbeck_7670/test-commit-revert-870bbd756864).
TCR is a programming workflow, which stands for **Test && Commit || Revert**.
Kent Beck, Oddmund Strømme, Lars Barlindhaug and Ole Johannessen came up with this concept
as described in [this post](https://medium.com/@kentbeck_7670/test-commit-revert-870bbd756864).

Since then several people experimented with this idea.

Expand Down
2 changes: 1 addition & 1 deletion tcr/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tcr 1.1.0
tcr 1.2.0
13 changes: 12 additions & 1 deletion typescript/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,18 @@ cd Kata-Diamonds/typescript

### 3 - Download dependencies

The kata uses `corepack` when configuring `yarn` as
the package manager to be used. You may need to run the
following command beforehand to enable it:

```shell
corepack enable
```

To download the dependencies:

```shell
yarn install
corepack yarn install
```

## Running the kata
Expand Down Expand Up @@ -88,6 +98,7 @@ Here are the main shortcuts available once TCR utility is running:
| `p` / `P` | Toggle on/off git auto-push |
| `l` / `L` | Pull from remote |
| `s` / `S` | Push to remote |
| `a` / `A` | Abort current command (when in driver role) |
| `q` / `Q` | Quit current role / Quit TCR |
| `?` | List available options |

Expand Down
5 changes: 3 additions & 2 deletions typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@
"devDependencies": {
"@types/jest": "*",
"jest": "*",
"ts-jest": "*",
"jest-junit": "*",
"ts-jest": "*",
"typescript": "*"
},
"scripts": {
"test": "jest --watchAll"
},
"jest-junit": {
"outputDirectory": "./test_results"
}
},
"packageManager": "yarn@4.4.1"
}
Loading

0 comments on commit 9a83ce0

Please sign in to comment.