hackmud-script-manager 0.20.2-b7b7724 → 0.20.3-048bd2b
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.
- package/README.md +15 -1
- package/bin/hsm.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,7 +1,21 @@
|
|
1
1
|
# Hackmud Script Manager
|
2
2
|
Command made for [hackmud-environment](https://github.com/samualtnorman/hackmud-environment), which is a scripting environment for hackmud with minification, autocompletes / intellisense, and TypeScript support.
|
3
3
|
|
4
|
-
Install
|
4
|
+
## Install
|
5
|
+
1. [Install Node.js](https://nodejs.org/en/download)
|
6
|
+
2. Run `npm install -g hackmud-script-manager`
|
7
|
+
|
8
|
+
## Usage
|
9
|
+
1. Run `#dir` in game, then `cd` to that folder
|
10
|
+
2. Name your source script file to `<name>.src.js`
|
11
|
+
3. Run `hsm golf <name>.src.js` and it will create a minified script file called `<name>.js`
|
12
|
+
|
13
|
+
> [!NOTE]
|
14
|
+
> If you get an error message that looks like this:
|
15
|
+
> ```
|
16
|
+
> [...]\AppData\Local\pnpm\hsm.ps1 cannot be loaded because running scripts is disabled on this system. [...]
|
17
|
+
> ```
|
18
|
+
> You will need to run `Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser` in PowerShell as an administrator. For more information, see [Microsoft's page about Execution Policies](https://learn.microsoft.com/en-gb/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7.4).
|
5
19
|
|
6
20
|
## Features
|
7
21
|
- Minification
|
package/bin/hsm.js
CHANGED
@@ -12,7 +12,7 @@ import { pull } from "../pull.js"
|
|
12
12
|
import { syncMacros } from "../syncMacros.js"
|
13
13
|
import "@samual/lib/readDirectoryWithStats"
|
14
14
|
import "@samual/lib/copyFilePersistent"
|
15
|
-
const version = "0.20.
|
15
|
+
const version = "0.20.3-048bd2b",
|
16
16
|
options = new Map(),
|
17
17
|
commands = [],
|
18
18
|
userColours = new Cache(user => {
|
package/package.json
CHANGED