Commit fb62dd17 authored by Grant's avatar Grant
Browse files

Do not build __test__ or __mocks__

parent 7a3bd0f7
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -25,7 +25,8 @@ module.exports = async function () {
  await prisma.user.createMany({
    data: [
      {
        sub: "grant@local.host",
        sub: "https://local.host/users/grant",
        username: "grant@local.host",
      },
    ],
  });
@@ -37,7 +38,7 @@ module.exports = async function () {
        color: "000",
        x: 0,
        y: 0,
        userId: "grant@local.host",
        userId: "https://local.host/users/grant",
        isTop: true,
        isModAction: false,
        createdAt: new Date(),
+2 −1
Original line number Diff line number Diff line
@@ -5,5 +5,6 @@
    "outDir": "dist",
    "inlineSourceMap": true,
    "sourceRoot": "/"
  }
  },
  "exclude": ["./src/__test__", "./src/__mocks__"]
}