Skip to content

Commit 4ebbc68

Browse files
committed
feat: move task/config.mjs -> src/config.mjs
1 parent 3be55d4 commit 4ebbc68

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed
File renamed without changes.

task/asset.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import fs from "node:fs/promises";
2-
import { S_ASSET } from "./config.mjs";
2+
import { S_ASSET } from "../src/config.mjs";
33

44
export const asset = async () =>
55
[...(await Array.fromAsync(await fs.glob(S_ASSET)))].map(

task/database.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { CONFIGS } from "./config.mjs";
1+
import { CONFIGS } from "../src/config.mjs";
22

33
export const database = async (jsons) => {
44
const posts = jsons

task/html.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
TEMPLATE,
1515
D_POST,
1616
D_PAGE,
17-
} from "./config.mjs";
17+
} from "../src/config.mjs";
1818

1919
const error = (error) => {
2020
console.error(error);

task/loader.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import fs from "node:fs/promises";
2-
import { S_MD } from "./config.mjs";
2+
import { S_MD } from "../src/config.mjs";
33

44
// 決めうちのデータ読み込み処理
55
const getJsonFromMarkdown = (filestring) => {

0 commit comments

Comments
 (0)