Skip to content

Commit 7f4dcc0

Browse files
committed
fix: remove templates copying step
1 parent 73a46bd commit 7f4dcc0

File tree

11 files changed

+1
-106
lines changed

11 files changed

+1
-106
lines changed

package-lock.json

Lines changed: 0 additions & 90 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@
6767
"jest-extended": "^4.0.2",
6868
"mime-types": "^3.0.1",
6969
"openapi-types": "^12.1.0",
70-
"rollup-plugin-copy": "^3.5.0",
7170
"ts-jest": "29.1.2",
7271
"ts-node": "^10.9.1",
7372
"tslint": "^6.1.3",

test/helpers/editor/editor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export class Editor {
8585
}
8686

8787
async templateResolver(templatePath: string): Promise<Blob | null> {
88-
const template = await fs.readFile(path.join(__dirname, '..', '..', '..', 'templates', templatePath))
88+
const template = await fs.readFile(path.join(__dirname, '..', '..', 'templates', templatePath))
8989
if (!template) {
9090
throw new Error(`Error during reading file ${templatePath} from templates`)
9191
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)