Skip to content

Commit 65ceeca

Browse files
Updates
1 parent 248c38b commit 65ceeca

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

bin/migrate.js bin/migrate.cjs

File renamed without changes.

bin/setup.js bin/setup.cjs

File renamed without changes.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
"node": "18.x"
2929
},
3030
"bin": {
31-
"create-promises-training": "./bin/setup.js",
32-
"migrate": "./bin/migrate.js"
31+
"create-promises-training": "./bin/setup.cjs",
32+
"migrate": "./bin/migrate.cjs"
3333
},
3434
"license": "CC-BY-NC-ND-4.0",
3535
"devDependencies": {

scripts/generateGraphTestsData.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const generateConfigFile = async () => {
3030
};
3131

3232
await writeFile(
33-
resolve(basePath, "./.data/graph/testConfig.json"),
33+
resolve(basePath, "./.data/graph/testsConfig.json"),
3434
JSON.stringify(config),
3535
{}
3636
);

src/lib/graphExercise/graphExerciseTests.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const makeGraphExerciseTests =
5656
};
5757

5858
const readTestConfig = async () => {
59-
const configFilePath = resolve("./.data/graph/testConfig.json");
59+
const configFilePath = resolve("./.data/graph/testsConfig.json");
6060

6161
const readConfigFile = returnException(() =>
6262
readFile(configFilePath, {

0 commit comments

Comments
 (0)