wallet-core/packages/anastasis-webui/dev.mjs

41 lines
1.3 KiB
JavaScript
Raw Normal View History

2022-06-06 04:10:51 +02:00
#!/usr/bin/env node
2022-06-08 20:18:41 +02:00
/*
This file is part of GNU Anastasis
(C) 2021-2022 Anastasis SARL
GNU Anastasis is free software; you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
GNU Anastasis is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with
GNU Anastasis; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
2022-06-06 04:10:51 +02:00
2023-05-05 13:35:28 +02:00
import { serve } from "@gnu-taler/web-util/node";
import { initializeDev, getFilesInDirectory } from "@gnu-taler/web-util/build";
2022-06-06 04:10:51 +02:00
2023-05-05 13:35:28 +02:00
const allTestFiles = getFilesInDirectory("src", /.test.tsx?$/);
const devEntryPoints = ["src/stories.tsx", "src/index.ts", ...allTestFiles];
const build = initializeDev({
source: {
js: devEntryPoints,
assets: ["src/index.html"],
},
css: "sass",
destination: "./dist/dev",
});
await build();
2022-06-06 04:10:51 +02:00
2022-12-06 15:21:12 +01:00
serve({
2023-05-05 13:35:28 +02:00
folder: "./dist/dev",
2022-12-06 15:21:12 +01:00
port: 8080,
2023-05-05 13:35:28 +02:00
source: "./src",
onSourceUpdate: build,
});