Skip to content

Commit

Permalink
Merge pull request #1452 from ngageoint/chore-74-update-light-server
Browse files Browse the repository at this point in the history
light-server -> http-server
  • Loading branch information
cwerthomni authored Jul 12, 2024
2 parents 7ae98e1 + 856b27c commit 84a3727
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,10 @@
"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:darwin:linux": "pkill -f http-server",
"stop-server:windows": "taskkill -F -PID $(netstat -ano | findstr 0.0.0.0:8282 | awk '{print $5}')",
"symlink": "run-script-os",
"symlink:nix": "./tasks/symlink.sh",
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 84a3727

Please sign in to comment.