Skip to content

Commit

Permalink
#207 Backend Frontend separation
Browse files Browse the repository at this point in the history
- fixing eslint errors
- fixing Db import in projectStructureHelper.ts
  • Loading branch information
MaximilianZenz committed Jan 12, 2024
1 parent aeb4027 commit d639f2a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion lib/models/Branch.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use strict';

import { aql } from 'arangojs';
import Model from './Model.js';

const Branch = Model.define('Branch', {
Expand Down
3 changes: 1 addition & 2 deletions lib/utils/projectStructureHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

import fs from 'fs';
import * as utils from './utils';
import Moment from 'moment';
import console_stamp from 'console-stamp';
import path from 'path';
import { fileURLToPath } from 'url';
import Context from './context';
import Db from './core/db/db';
import Db from '../core/db/db';

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
Expand Down
1 change: 0 additions & 1 deletion lib/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import archiver from 'archiver';
import stream from 'stream';
import Db from '../core/db/db';

export function createZipStream(directory: string) {
const zip = archiver('zip');
Expand Down

0 comments on commit d639f2a

Please sign in to comment.