chore: bump to 0.8.0-dev

This commit is contained in:
CanadaHonk 2022-12-28 13:10:17 +00:00
parent 2e25a15a1d
commit ace26b85f9
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@gluon-framework/gluon",
"version": "0.7.0",
"version": "0.8.0-dev",
"description": "Make websites into desktop apps with system installed browsers and NodeJS.",
"main": "src/index.js",
"types": "gluon.d.ts",

View File

@ -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.7.0';
process.versions.gluon = '0.8.0-dev';
import { join, dirname, delimiter, sep } from 'path';
import { access, readdir } from 'fs/promises';