Compare commits
22 Commits
64e64c6e4e
...
renovate/n
Author | SHA1 | Date | |
---|---|---|---|
094589786e | |||
90bbaed669 | |||
fd0075b376 | |||
477ef865ef | |||
19ba6d2346 | |||
0b212340d3 | |||
d514fe70f3 | |||
c0162d4888 | |||
754b9aa9c2 | |||
b1c85cb470 | |||
0404a65830 | |||
cc0e9207d1 | |||
697cd354f6 | |||
d781410a7d | |||
72ef7b8393 | |||
c89223f01d | |||
b107450333 | |||
d18c073ee8 | |||
5f4acc6ec6 | |||
859198068c | |||
7e29831831 | |||
92a78feecf |
@@ -27,7 +27,7 @@ steps:
|
|||||||
restore: true
|
restore: true
|
||||||
|
|
||||||
- name: test
|
- name: test
|
||||||
image: 'node:22.13.1-slim'
|
image: 'node:22.17.1-slim'
|
||||||
commands:
|
commands:
|
||||||
- yarn set version 4.6.0
|
- yarn set version 4.6.0
|
||||||
- yarn install
|
- yarn install
|
||||||
|
26
.pnp.loader.mjs
generated
26
.pnp.loader.mjs
generated
@@ -131,7 +131,7 @@ async function copyImpl(prelayout, postlayout, destinationFs, destination, sourc
|
|||||||
async function maybeLStat(baseFs, p) {
|
async function maybeLStat(baseFs, p) {
|
||||||
try {
|
try {
|
||||||
return await baseFs.lstatPromise(p);
|
return await baseFs.lstatPromise(p);
|
||||||
} catch (e) {
|
} catch {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -482,7 +482,7 @@ class FakeFS {
|
|||||||
let current = Buffer.alloc(0);
|
let current = Buffer.alloc(0);
|
||||||
try {
|
try {
|
||||||
current = await this.readFilePromise(p);
|
current = await this.readFilePromise(p);
|
||||||
} catch (error) {
|
} catch {
|
||||||
}
|
}
|
||||||
if (Buffer.compare(current, content) === 0)
|
if (Buffer.compare(current, content) === 0)
|
||||||
return;
|
return;
|
||||||
@@ -492,7 +492,7 @@ class FakeFS {
|
|||||||
let current = ``;
|
let current = ``;
|
||||||
try {
|
try {
|
||||||
current = await this.readFilePromise(p, `utf8`);
|
current = await this.readFilePromise(p, `utf8`);
|
||||||
} catch (error) {
|
} catch {
|
||||||
}
|
}
|
||||||
const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content;
|
const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content;
|
||||||
if (current === normalizedContent)
|
if (current === normalizedContent)
|
||||||
@@ -510,7 +510,7 @@ class FakeFS {
|
|||||||
let current = Buffer.alloc(0);
|
let current = Buffer.alloc(0);
|
||||||
try {
|
try {
|
||||||
current = this.readFileSync(p);
|
current = this.readFileSync(p);
|
||||||
} catch (error) {
|
} catch {
|
||||||
}
|
}
|
||||||
if (Buffer.compare(current, content) === 0)
|
if (Buffer.compare(current, content) === 0)
|
||||||
return;
|
return;
|
||||||
@@ -520,7 +520,7 @@ class FakeFS {
|
|||||||
let current = ``;
|
let current = ``;
|
||||||
try {
|
try {
|
||||||
current = this.readFileSync(p, `utf8`);
|
current = this.readFileSync(p, `utf8`);
|
||||||
} catch (error) {
|
} catch {
|
||||||
}
|
}
|
||||||
const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content;
|
const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content;
|
||||||
if (current === normalizedContent)
|
if (current === normalizedContent)
|
||||||
@@ -560,13 +560,13 @@ class FakeFS {
|
|||||||
let pid;
|
let pid;
|
||||||
try {
|
try {
|
||||||
[pid] = await this.readJsonPromise(lockPath);
|
[pid] = await this.readJsonPromise(lockPath);
|
||||||
} catch (error) {
|
} catch {
|
||||||
return Date.now() - startTime < 500;
|
return Date.now() - startTime < 500;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
process.kill(pid, 0);
|
process.kill(pid, 0);
|
||||||
return true;
|
return true;
|
||||||
} catch (error) {
|
} catch {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -579,7 +579,7 @@ class FakeFS {
|
|||||||
try {
|
try {
|
||||||
await this.unlinkPromise(lockPath);
|
await this.unlinkPromise(lockPath);
|
||||||
continue;
|
continue;
|
||||||
} catch (error2) {
|
} catch {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (Date.now() - startTime < 60 * 1e3) {
|
if (Date.now() - startTime < 60 * 1e3) {
|
||||||
@@ -599,7 +599,7 @@ class FakeFS {
|
|||||||
try {
|
try {
|
||||||
await this.closePromise(fd);
|
await this.closePromise(fd);
|
||||||
await this.unlinkPromise(lockPath);
|
await this.unlinkPromise(lockPath);
|
||||||
} catch (error) {
|
} catch {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -895,7 +895,7 @@ class ProxiedFS extends FakeFS {
|
|||||||
watch(p, a, b) {
|
watch(p, a, b) {
|
||||||
return this.baseFs.watch(
|
return this.baseFs.watch(
|
||||||
this.mapToBase(p),
|
this.mapToBase(p),
|
||||||
// @ts-expect-error
|
// @ts-expect-error - reason TBS
|
||||||
a,
|
a,
|
||||||
b
|
b
|
||||||
);
|
);
|
||||||
@@ -903,7 +903,7 @@ class ProxiedFS extends FakeFS {
|
|||||||
watchFile(p, a, b) {
|
watchFile(p, a, b) {
|
||||||
return this.baseFs.watchFile(
|
return this.baseFs.watchFile(
|
||||||
this.mapToBase(p),
|
this.mapToBase(p),
|
||||||
// @ts-expect-error
|
// @ts-expect-error - reason TBS
|
||||||
a,
|
a,
|
||||||
b
|
b
|
||||||
);
|
);
|
||||||
@@ -1323,7 +1323,7 @@ class NodeFS extends BasePortableFakeFS {
|
|||||||
watch(p, a, b) {
|
watch(p, a, b) {
|
||||||
return this.realFs.watch(
|
return this.realFs.watch(
|
||||||
npath.fromPortablePath(p),
|
npath.fromPortablePath(p),
|
||||||
// @ts-expect-error
|
// @ts-expect-error - reason TBS
|
||||||
a,
|
a,
|
||||||
b
|
b
|
||||||
);
|
);
|
||||||
@@ -1331,7 +1331,7 @@ class NodeFS extends BasePortableFakeFS {
|
|||||||
watchFile(p, a, b) {
|
watchFile(p, a, b) {
|
||||||
return this.realFs.watchFile(
|
return this.realFs.watchFile(
|
||||||
npath.fromPortablePath(p),
|
npath.fromPortablePath(p),
|
||||||
// @ts-expect-error
|
// @ts-expect-error - reason TBS
|
||||||
a,
|
a,
|
||||||
b
|
b
|
||||||
);
|
);
|
||||||
|
@@ -1,2 +1,2 @@
|
|||||||
nodejs 22.13.1
|
nodejs 22.17.1
|
||||||
yarn 1.22.22
|
yarn 1.22.22
|
||||||
|
934
.yarn/releases/yarn-4.6.0.cjs
vendored
934
.yarn/releases/yarn-4.6.0.cjs
vendored
File diff suppressed because one or more lines are too long
942
.yarn/releases/yarn-4.9.2.cjs
vendored
Executable file
942
.yarn/releases/yarn-4.9.2.cjs
vendored
Executable file
File diff suppressed because one or more lines are too long
@@ -3,4 +3,4 @@ plugins:
|
|||||||
path: .yarn/plugins/@yarnpkg/plugin-outdated.cjs
|
path: .yarn/plugins/@yarnpkg/plugin-outdated.cjs
|
||||||
spec: "https://go.mskelton.dev/yarn-outdated/v4"
|
spec: "https://go.mskelton.dev/yarn-outdated/v4"
|
||||||
|
|
||||||
yarnPath: .yarn/releases/yarn-4.6.0.cjs
|
yarnPath: .yarn/releases/yarn-4.9.2.cjs
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
FROM node:22.13.1-slim
|
FROM node:22.17.1-slim
|
||||||
|
|
||||||
WORKDIR /opt/app
|
WORKDIR /opt/app
|
||||||
|
|
||||||
|
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"name": "clean-architecture",
|
"name": "clean-architecture",
|
||||||
"packageManager": "yarn@4.6.0",
|
"packageManager": "yarn@4.9.2",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/jest": "^29.5.13",
|
"@types/jest": "^30.0.0",
|
||||||
"@types/node": "^22.7.5",
|
"@types/node": "^22.7.5",
|
||||||
"jest": "^29.7.0",
|
"jest": "^30.0.0",
|
||||||
"ts-jest": "^29.2.5",
|
"ts-jest": "^29.2.5",
|
||||||
"ts-node": "^10.9.2",
|
"ts-node": "^10.9.2",
|
||||||
"typescript": "^5.6.2"
|
"typescript": "^5.6.2"
|
||||||
|
Reference in New Issue
Block a user