fix: remove migration seed and unused import

This commit is contained in:
Oliver Eyton-Williams 2020-08-25 09:32:35 +02:00 committed by Mrugesh Mohapatra
parent 1ad5f756e0
commit 40acb604d2
2 changed files with 0 additions and 2 deletions

View File

@ -53,7 +53,6 @@
"postinstall": "npm run bootstrap",
"seed": "npm-run-all -p seed:*",
"seed:auth-user": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedAuthUser",
"seed:path-migration": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/create-path-migration",
"serve:client": "cd ./client && npm run serve",
"start": "npm-run-all ensure-env -p develop:server serve:client",
"test": "npm-run-all -p test:*",

View File

@ -1,6 +1,5 @@
const fs = require('fs');
const path = require('path');
const debug = require('debug');
const env = require('../../../config/env');