Skip to content

Commit

Permalink
Updated comments; Updated Birdhouse version
Browse files Browse the repository at this point in the history
  • Loading branch information
HousebirdGames committed May 4, 2024
1 parent 0a8959a commit 4afbea8
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
7 changes: 7 additions & 0 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
This feature is in an experimental state and may not be suitable for all use cases. Please use with caution and report any issues you encounter.
This Node.js script, provides the Electron packaging functionality for Birdhouse.
*/

const fs = require('fs-extra');
const path = require('path');
const vm = require('vm');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Birdhouse",
"version": "1.1.0",
"version": "1.2.0",
"description": "",
"main": "electron-main.js",
"scripts": {
Expand Down
7 changes: 7 additions & 0 deletions start-package.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
This feature is in an experimental state and may not be suitable for all use cases. Please use with caution and report any issues you encounter.
This Node.js script, starts the Electron packaging process for Birdhouse.
*/

const package = require('./package');

package.packageApp();
7 changes: 7 additions & 0 deletions start-server.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
This feature is in an experimental state and may not be suitable for all use cases. Please use with caution and report any issues you encounter.
This Node.js script, starts the local server for Birdhouse.
*/

const server = require('./server');

server.start(process.argv.includes('-findPort'));

0 comments on commit 4afbea8

Please sign in to comment.