hackmud-script-manager 0.20.4-12b9eb8 → 0.20.4-1d688c1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +7 -1
- package/bin/hsm.js +291 -258
- package/env.d.ts +844 -1423
- package/generateTypeDeclaration.js +2 -1
- package/index.js +2 -1
- package/package.json +43 -39
- package/processScript/index.js +3 -3
- package/processScript/minify.js +18 -21
- package/processScript/postprocess.d.ts +1 -1
- package/processScript/postprocess.js +3 -3
- package/processScript/preprocess.js +5 -3
- package/processScript/transform.js +102 -96
- package/push.d.ts +9 -1
- package/push.js +36 -14
- package/syncMacros.js +1 -1
- package/watch.js +12 -9
package/README.md
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
# Hackmud Script Manager
|
2
|
-
Command made for [
|
2
|
+
Command made for [Hackmud Scripting Environment](https://github.com/samualtnorman/hackmud-environment), which is a scripting environment for hackmud with minification, autocompletes / intellisense, and TypeScript support.
|
3
3
|
|
4
4
|
[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/R6R0XN5CX)
|
5
5
|
|
6
|
+
You can read about how HSM works [in my blog post](https://samual.uk/blog/js-code-transformation-niche-environment/).
|
7
|
+
|
6
8
|
## Install
|
7
9
|
1. [Install Node.js](https://nodejs.org/en/download)
|
8
10
|
2. Run `npm install -g hackmud-script-manager`
|
@@ -18,6 +20,10 @@ Command made for [hackmud-environment](https://github.com/samualtnorman/hackmud-
|
|
18
20
|
> ```
|
19
21
|
> 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).
|
20
22
|
|
23
|
+
![image](https://github.com/samualtnorman/hackmud-script-manager/assets/18307063/69a371fe-f8c8-43fe-b3c7-39f3735ce6fb)
|
24
|
+
![image](https://github.com/samualtnorman/hackmud-script-manager/assets/18307063/08103f9e-74fa-4a56-a739-94858ba8c139)
|
25
|
+
![image](https://github.com/samualtnorman/hackmud-script-manager/assets/18307063/25ccb86d-1fe3-4632-b703-ac47f5b32c9c)
|
26
|
+
|
21
27
|
## Features
|
22
28
|
- Minification
|
23
29
|
- This includes auto quine cheating.
|