From 9a094334ba21f3b9a972fd5f72ab80e0252f05b2 Mon Sep 17 00:00:00 2001 From: CanadaHonk Date: Sun, 8 Jan 2023 14:03:38 +0000 Subject: [PATCH] release: 0.11.0-alpha.6 --- package.json | 2 +- src/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2857b00..51f31b4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@gluon-framework/gluon", - "version": "0.11.0-alpha.5", + "version": "0.11.0-alpha.6", "description": "Make websites into desktop apps with system installed browsers and NodeJS.", "main": "src/index.js", "types": "gluon.d.ts", diff --git a/src/index.js b/src/index.js index ed03af6..ee99123 100644 --- a/src/index.js +++ b/src/index.js @@ -1,7 +1,7 @@ const rgb = (r, g, b, msg) => `\x1b[38;2;${r};${g};${b}m${msg}\x1b[0m`; global.log = (...args) => console.log(`[${rgb(88, 101, 242, 'Gluon')}]`, ...args); -process.versions.gluon = '0.11.0-alpha.5'; +process.versions.gluon = '0.11.0-alpha.6'; import { join, dirname, delimiter, sep } from 'path'; import { access, readdir } from 'fs/promises';