Skip to content

Commit

Permalink
fix(dep): use http-server instead of light-server
Browse files Browse the repository at this point in the history
  • Loading branch information
sethahrenbach committed Jun 26, 2024
1 parent f0f21fa commit e9042cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@
"package:update": "if git diff --name-only ORIG_HEAD HEAD | grep --quiet package.json; then echo 'UPDATE: package.json was updated, consider running yarn in your workspace root'; fi",
"perms": "chmod -R u+rwX,go+rX,go-w .",
"semantic-release": "semantic-release --dry-run",
"start-server": "light-server --serve ../../ --bind localhost --port 8282 --no-reload --open --quiet &",
"container-start-server": "light-server --serve ../../ --bind 0.0.0.0 --port 8282 --no-reload --open --quiet",
"start-server": "http-server ../../ -a localhost --port 8282 -o /workspace/opensphere/dist/opensphere -s &",
"container-start-server": "http-server ../../ -a 0.0.0.0 --port 8282 -o /workspace/opensphere/dist/opensphere -s",
"stop-server": "run-script-os",
"stop-server:darwin:linux": "pkill -f light-server",
"stop-server:windows": "taskkill -F -PID $(netstat -ano | findstr 0.0.0.0:8282 | awk '{print $5}')",
Expand Down Expand Up @@ -267,6 +267,7 @@
"google-closure-compiler": "20210907.0.0",
"html-validate": "6.1.0",
"html-validate-angular": "^3.0.2",
"http-server": "^14.1.1",
"husky": "^7.0.4",
"json": "^11.0.0",
"karma": "^6.3.16",
Expand All @@ -276,7 +277,6 @@
"karma-jasmine": "^0.1.0",
"karma-junit-reporter": "^2.0.1",
"karma-ng-html2js-preprocessor": "^1.0.0",
"light-server": "^2.9.1",
"lolex": "=2.3.2",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
Expand Down

0 comments on commit e9042cc

Please sign in to comment.