Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
fix: no need for open+path
Browse files Browse the repository at this point in the history
  • Loading branch information
pamapa committed May 23, 2022
1 parent 54fda0f commit 6daa33b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
3 changes: 1 addition & 2 deletions samples/Parcel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
},
"dependencies": {
"express": "^4.17.1",
"jsrsasign": "^10.3.0",
"open": "^8.2.1"
"jsrsasign": "^10.3.0"
},
"devDependencies": {
"concurrently": "^7.0.0",
Expand Down
4 changes: 0 additions & 4 deletions samples/Parcel/server.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
var open = require("open");
var path = require("path");

var port = 15000;
var url = "http://localhost:" + 1234;

Expand All @@ -13,5 +10,4 @@ var oidc = require("./oidc");
oidc(url, app);

console.log("listening on " + url);
//open(url);
app.listen(port);

0 comments on commit 6daa33b

Please sign in to comment.