@unsetsoft/ryunixjs 0.2.15-nightly.6 → 0.2.15

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.
Files changed (2) hide show
  1. package/bin/index.js +1 -5
  2. package/package.json +1 -1
package/bin/index.js CHANGED
@@ -9,14 +9,10 @@ const serv = {
9
9
  describe: "Run server",
10
10
  handler: async (arg) => {
11
11
  const port = arg.port || 3000;
12
- const open = arg.browser ? Boolean(arg.browser) : false || false;
13
- const compress = arg.compress ? arg.compress : false || false;
14
- const liveReload = arg.liveReload ? Boolean(arg.liveReload) : false || true;
12
+ const open = Boolean(arg.browser) || false;
15
13
  const settings = {
16
14
  port: port,
17
15
  open,
18
- compress,
19
- liveReload,
20
16
  };
21
17
 
22
18
  StartServer(settings);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unsetsoft/ryunixjs",
3
- "version": "0.2.15-nightly.6",
3
+ "version": "0.2.15",
4
4
  "license": "MIT",
5
5
  "main": "./dist/Ryunix.js",
6
6
  "private": false,