@stepzen/graphiql-proxy 0.30.0-beta.7 → 0.30.0-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/package.json +6 -6
- package/src/server/api/debugging.js +1 -1
- package/src/server/api/details.js +1 -1
- package/src/server/api/ping.js +1 -1
- package/src/server/api/predicates.js +1 -1
- package/src/server/api/proxy.js +1 -1
- package/src/server/api/samples.js +1 -1
- package/src/server/index.js +1 -1
- package/src/server/utils/open-browser.js +1 -1
- package/src/server/utils/open-chrome.applescript +1 -1
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2020,
|
|
3
|
+
Copyright (c) StepZen Inc., an IBM Company 2020,2023.
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stepzen/graphiql-proxy",
|
|
3
|
-
"version": "0.30.0-beta.
|
|
3
|
+
"version": "0.30.0-beta.8",
|
|
4
4
|
"author": "Darren Waddell <darren@stepzen.com>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://stepzen.com",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"posttest": "prettier . --check"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@stepzen/fetch": "0.30.0-beta.
|
|
26
|
+
"@stepzen/fetch": "0.30.0-beta.8",
|
|
27
27
|
"chalk": "^4.1.2",
|
|
28
28
|
"cors": "^2.8.5",
|
|
29
29
|
"cross-spawn": "^7.0.3",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@types/express": "^4.17.9",
|
|
42
42
|
"@types/glob": "^7.2.0",
|
|
43
43
|
"@types/license-checker": "^25.0.1",
|
|
44
|
-
"@types/mocha": "^
|
|
44
|
+
"@types/mocha": "^10.0.1",
|
|
45
45
|
"@types/node": "^14.18.36",
|
|
46
46
|
"@types/sinon-chai": "3.2.8",
|
|
47
47
|
"chai": "^4.2.0",
|
|
@@ -49,13 +49,13 @@
|
|
|
49
49
|
"dotenv": "^16.0.3",
|
|
50
50
|
"fancy-test": "^1.4.10",
|
|
51
51
|
"license-checker": "^25.0.1",
|
|
52
|
-
"mocha": "^
|
|
52
|
+
"mocha": "^10.2.0",
|
|
53
53
|
"nock": "^13.0.4",
|
|
54
|
-
"nodemon": "^2.0.
|
|
54
|
+
"nodemon": "^2.0.22",
|
|
55
55
|
"nyc": "^14.1.1",
|
|
56
56
|
"sinon": "13.0.1",
|
|
57
57
|
"sinon-chai": "3.7.0",
|
|
58
58
|
"ts-node": "^10.8.2"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "3c07e8c1948ab2179aa8464efe5c1076e622247d"
|
|
61
61
|
}
|
package/src/server/api/ping.js
CHANGED
package/src/server/api/proxy.js
CHANGED
package/src/server/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright (c) 2020,
|
|
1
|
+
// Copyright (c) StepZen Inc., an IBM Company 2020,2023.
|
|
2
2
|
// Original code from https://github.com/facebook/create-react-app/blob/0f6fc2bc71d78f0dcae67f3f08ce98a42fc0a57c/packages/react-dev-utils/openChrome.applescript
|
|
3
3
|
|
|
4
4
|
const chalk = require('chalk')
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
(*
|
|
2
|
-
Copyright (c) 2020,
|
|
2
|
+
Copyright (c) StepZen Inc., an IBM Company 2020,2023.
|
|
3
3
|
|
|
4
4
|
Original code from https://github.com/facebook/create-react-app/blob/0f6fc2bc71d78f0dcae67f3f08ce98a42fc0a57c/packages/react-dev-utils/openChrome.applescript
|
|
5
5
|
*)
|