remove unnecessary dep

This commit is contained in:
Cory LaViska
2023-03-21 16:25:52 -04:00
parent d710eb3947
commit 257407758f
3 changed files with 0 additions and 5 deletions

1
package-lock.json generated
View File

@@ -56,7 +56,6 @@
"lint-staged": "^13.1.0",
"lunr": "^2.3.9",
"npm-check-updates": "^16.6.2",
"open": "^8.4.0",
"pascal-case": "^3.1.2",
"plop": "^3.1.1",
"prettier": "^2.8.2",

View File

@@ -110,7 +110,6 @@
"lint-staged": "^13.1.0",
"lunr": "^2.3.9",
"npm-check-updates": "^16.6.2",
"open": "^8.4.0",
"pascal-case": "^3.1.2",
"plop": "^3.1.1",
"prettier": "^2.8.2",

View File

@@ -7,7 +7,6 @@ import esbuild from 'esbuild';
import fs from 'fs';
import getPort, { portNumbers } from 'get-port';
import { globby } from 'globby';
import open from 'open';
import copy from 'recursive-copy';
const { bundle, copydir, dir, serve, types } = commandLineArgs([
@@ -108,7 +107,6 @@ fs.mkdirSync(outdir, { recursive: true });
deleteSync('docs/dist');
const browserSyncConfig = {
open: false,
startPath: '/',
port,
logLevel: 'silent',
@@ -145,7 +143,6 @@ fs.mkdirSync(outdir, { recursive: true });
bs.init(browserSyncConfig, () => {
const url = `http://localhost:${port}`;
console.log(chalk.cyan(`Launched the Shoelace dev server at ${url} 🥾\n`));
open(url);
});
// Rebuild and reload when source files change