Browse Source

Replace require with import in start task

Dominik Prokop 6 years ago
parent
commit
28f42bab5b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/cli/start.ts

+ 1 - 1
scripts/cli/start.ts

@@ -1,4 +1,4 @@
-const concurrently = require('concurrently');
+import concurrently from 'concurrently';
 
 export const startTask = async ({ watchThemes, hot }: { watchThemes: boolean; hot: boolean }) => {
   const jobs = [];