Skip to content

Commit 9d91092

Browse files
committed
1.2.0
1 parent c3e6528 commit 9d91092

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/runner/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN apk add --no-cache \
2929
expect
3030

3131
# Install global Node.js tools like TypeScript and ts-node.
32-
RUN npm install -g typescript ts-node taylored
32+
RUN npm install -g typescript ts-node taylo
3333

3434
# Set the working directory inside the container.
3535
WORKDIR /app

src/runner/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"simple-git": "^3.28.0",
1414
"socket.io": "^4.8.1",
15-
"taylored": "^5.1.0",
15+
"taylo": "^7.0.16",
1616
"tmp": "^0.2.3"
1717
}
1818
}

src/runner/runner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ io.on('connection', (socket) => {
101101
await git.add(xmlFilePath);
102102
await git.commit('Add runner.xml');
103103

104-
const tayloredProcess = spawn('taylored', ['--automatic', 'xml', 'main'], { cwd: tempDirPath });
104+
const tayloredProcess = spawn('taylo', ['--automatic', 'xml', 'main'], { cwd: tempDirPath });
105105

106106
tayloredProcess.stdout.on('data', (data) => {
107107
const output = data.toString();

0 commit comments

Comments
 (0)