We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7f5d1d commit 0107831Copy full SHA for 0107831
bin/copy-dist.ts
@@ -29,7 +29,7 @@ const copy = async () => {
29
fs.copySync(path.join("build", srcFile), destFile, { recursive: true });
30
}
31
32
- const filesToCopy = ["config-sample.ini", "tsconfig.webpack.json"];
+ const filesToCopy = ["config-sample.ini", "tsconfig.webpack.json", "./src/etapi/etapi.openapi.yaml"];
33
for (const file of filesToCopy) {
34
log(`Copying ${file}`);
35
await fs.copy(file, path.join(DEST_DIR, file));
0 commit comments