Skip to content

Commit 3130b60

Browse files
committed
Upgraded to v4.0.3
1 parent d3a4226 commit 3130b60

File tree

13 files changed

+23
-23
lines changed

13 files changed

+23
-23
lines changed

bin/deploy.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ async function main() {
108108
}
109109
main();
110110

111-
const exec = async(...args) => {
111+
const exec = async(file, arguments = [], options = {}) => {
112112
// @ts-ignore
113-
const subprocess = execa(...args);
114-
subprocess.stdout.pipe(process.stdout);
113+
const subprocess = execa(file, arguments, { stdio: 'inherit', ...options });
114+
// subprocess.stdout.pipe(process.stdout);
115115

116116
await subprocess;
117117
};

chrome-ext-files/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "Altair GraphQL Client",
44
"short_name": "Altair",
55
"description": "The only graphQL client you'll ever need.",
6-
"version": "4.0.2",
6+
"version": "4.0.3",
77
"icons": {
88
"16": "assets/img/altair_logo_128.png",
99
"48": "assets/img/altair_logo_128.png",

cwex.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ manifestOptions:
1010
name: Altair GraphQL Client
1111
short_name: Altair
1212
description: A beautiful feature-rich GraphQL client for all platforms
13-
version: 4.0.2
13+
version: 4.0.3
1414
icons:
1515
16: assets/img/altair_logo_128.png
1616
48: assets/img/altair_logo_128.png

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "4.0.2",
5+
"version": "4.0.3",
66
"registry": "https://registry.npmjs.org/",
77
"npmClient": "yarn",
88
"stream": true

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "altair",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
44
"license": "MIT",
55
"author": "Samuel Imolorhe <altair@sirmuel.design> (https://sirmuel.design/)",
66
"description": "The best graphQL client you will ever need",

packages/altair-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "altair-app",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
44
"description": "Contains the altair app",
55
"main": "dist/main.js",
66
"license": "MIT",

packages/altair-electron/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "altair",
33
"productName": "Altair GraphQL Client",
4-
"version": "4.0.2",
4+
"version": "4.0.3",
55
"description": "Electron wrapper for Altair",
66
"main": "index.js",
77
"author": "Samuel Imolorhe <altair@sirmuel.design> (https://sirmuel.design/)",
@@ -15,7 +15,7 @@
1515
"dev": "electron ."
1616
},
1717
"dependencies": {
18-
"altair-static": "^4.0.2",
18+
"altair-static": "^4.0.3",
1919
"electron-debug": "^3.0.1",
2020
"electron-is-dev": "^1.2.0",
2121
"electron-log": "^3.0.6",

packages/altair-exported-types/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "altair-exported-types",
3-
"version": "1.0.0",
3+
"version": "4.0.3",
44
"description": "Contains types exported from the app",
55
"main": "index.js",
66
"license": "MIT",
@@ -10,7 +10,7 @@
1010
"test": "echo \"Error: no test specified\" && exit 0"
1111
},
1212
"devDependencies": {
13-
"altair-app": "^4.0.2",
13+
"altair-app": "^4.0.3",
1414
"jest": "^26.6.3",
1515
"typescript": "4.0.7"
1616
}

packages/altair-express-middleware/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "altair-express-middleware",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
44
"description": "Express middleware for altair graphql client",
55
"main": "./build/index.js",
66
"types": "./build/index.d.ts",
@@ -31,7 +31,7 @@
3131
},
3232
"homepage": "https://github.com/imolorhe/altair#readme",
3333
"dependencies": {
34-
"altair-static": "^4.0.2",
34+
"altair-static": "^4.0.3",
3535
"express": "^4.16.2"
3636
},
3737
"devDependencies": {

packages/altair-fastify-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "altair-fastify-plugin",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
44
"description": "Fastify Plugin of Altair GraphQL Client",
55
"keywords": [
66
"graphql",
@@ -31,7 +31,7 @@
3131
"test": "echo \"Error: no test specified\" && exit 0"
3232
},
3333
"dependencies": {
34-
"altair-static": "^4.0.2",
34+
"altair-static": "^4.0.3",
3535
"fastify-plugin": "^2.3.4",
3636
"fastify-static": "^3.2.1"
3737
},

0 commit comments

Comments
 (0)