hackmud-script-manager 0.19.1-003b022 → 0.19.1-02bed1a
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 +1 -1
- package/bin/hsm.d.ts +0 -0
- package/bin/hsm.js +127 -291
- package/env.d.ts +1657 -0
- package/generateTypeDeclaration.d.ts +1 -2
- package/generateTypeDeclaration.js +2 -2
- package/index.d.ts +2 -2
- package/package.json +10 -8
- package/processScript/index.d.ts +17 -26
- package/processScript/index.js +258 -241
- package/processScript/minify.d.ts +15 -21
- package/processScript/minify.js +385 -399
- package/processScript/postprocess.d.ts +1 -2
- package/processScript/postprocess.js +18 -18
- package/processScript/preprocess.d.ts +7 -10
- package/processScript/preprocess.js +94 -94
- package/processScript/shared.d.ts +2 -2
- package/processScript/shared.js +23 -23
- package/processScript/transform.d.ts +13 -18
- package/processScript/transform.js +596 -561
- package/pull.d.ts +5 -9
- package/pull.js +2 -2
- package/push.d.ts +24 -33
- package/push.js +86 -217
- package/syncMacros.d.ts +1 -2
- package/syncMacros.js +3 -3
- package/watch.d.ts +10 -16
- package/watch.js +24 -24
- package/tsconfig.tsbuildinfo +0 -1
@@ -1,2 +1 @@
|
|
1
|
-
export declare
|
2
|
-
export default generateTypeDeclaration;
|
1
|
+
export declare function generateTypeDeclaration(sourceDirectory: string, hackmudPath?: string): Promise<string>;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { readDirectoryWithStats } from "@samual/lib/readDirectoryWithStats"
|
2
2
|
import { basename, resolve } from "path"
|
3
|
-
|
3
|
+
async function generateTypeDeclaration(sourceDirectory, hackmudPath) {
|
4
4
|
const users = new Set()
|
5
5
|
if (hackmudPath)
|
6
6
|
for (const { stats, name } of await readDirectoryWithStats(hackmudPath))
|
@@ -65,4 +65,4 @@ const generateTypeDeclaration = async (sourceDirectory, hackmudPath) => {
|
|
65
65
|
o += "}\n"
|
66
66
|
return o
|
67
67
|
}
|
68
|
-
export { generateTypeDeclaration
|
68
|
+
export { generateTypeDeclaration }
|
package/index.d.ts
CHANGED
@@ -6,8 +6,8 @@ export { push } from "./push";
|
|
6
6
|
export { syncMacros } from "./syncMacros";
|
7
7
|
export { watch } from "./watch";
|
8
8
|
export type Info = {
|
9
|
-
|
9
|
+
path: string;
|
10
10
|
users: string[];
|
11
|
-
|
11
|
+
characterCount: number;
|
12
12
|
error: Error | undefined;
|
13
13
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "hackmud-script-manager",
|
3
|
-
"version": "0.19.1-
|
3
|
+
"version": "0.19.1-02bed1a",
|
4
4
|
"description": "Script manager for game hackmud, with minification, TypeScript support, and player script type definition generation.",
|
5
5
|
"keywords": [
|
6
6
|
"api",
|
@@ -59,27 +59,29 @@
|
|
59
59
|
"@rollup/plugin-commonjs": "^25.0.7",
|
60
60
|
"@rollup/plugin-json": "^6.1.0",
|
61
61
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
62
|
-
"@samual/lib": "0.
|
62
|
+
"@samual/lib": "0.11.0",
|
63
63
|
"acorn": "^8.11.3",
|
64
64
|
"chalk": "^5.3.0",
|
65
65
|
"chokidar": "^3.6.0",
|
66
66
|
"import-meta-resolve": "^4.0.0",
|
67
67
|
"prettier": "^3.2.5",
|
68
68
|
"proxy-polyfill": "^0.3.2",
|
69
|
-
"rollup": "^4.
|
70
|
-
"terser": "^5.30.
|
69
|
+
"rollup": "^4.16.4",
|
70
|
+
"terser": "^5.30.4"
|
71
71
|
},
|
72
|
-
"
|
73
|
-
"
|
74
|
-
"pnpm": "^9.0.1"
|
72
|
+
"peerDependencies": {
|
73
|
+
"typescript": "5.4.5"
|
75
74
|
},
|
76
75
|
"type": "module",
|
77
76
|
"exports": {
|
77
|
+
".": "./index.js",
|
78
78
|
"./*": "./*.js",
|
79
79
|
"./*.js": "./*.js"
|
80
80
|
},
|
81
81
|
"bin": {
|
82
|
-
"hsm.d": "bin/hsm.d.ts",
|
83
82
|
"hsm": "bin/hsm.js"
|
83
|
+
},
|
84
|
+
"engines": {
|
85
|
+
"node": "^18 || >=20"
|
84
86
|
}
|
85
87
|
}
|
package/processScript/index.d.ts
CHANGED
@@ -3,38 +3,29 @@ export { minify } from "./minify";
|
|
3
3
|
export { postprocess } from "./postprocess";
|
4
4
|
export { preprocess } from "./preprocess";
|
5
5
|
export { transform } from "./transform";
|
6
|
-
export type ProcessOptions = {
|
7
|
-
/** whether to minify the given code */
|
8
|
-
|
9
|
-
/**
|
10
|
-
uniqueID: string;
|
11
|
-
/** the user going to be hosting this script (or set to `true` if not yet known) */
|
12
|
-
scriptUser: string | true;
|
13
|
-
/** the name of this script (or set to `true` if not yet known) */
|
14
|
-
scriptName: string | true;
|
6
|
+
export type ProcessOptions = LaxPartial<{
|
7
|
+
/** whether to minify the given code */ minify: boolean;
|
8
|
+
/** 11 a-z 0-9 characters */ uniqueId: string;
|
9
|
+
/** the user going to be hosting this script (or set to `true` if not yet known) */ scriptUser: string | true;
|
15
10
|
filePath: string;
|
16
|
-
/** whether to mangle function and class names (defaults to `false`) */
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
* when left unset or set to `undefined`, automatically uses or doesn't use quine cheats based on character count
|
24
|
-
*/
|
11
|
+
/** whether to mangle function and class names (defaults to `false`) */ mangleNames: boolean;
|
12
|
+
/** when set to `true` forces use of quine cheats
|
13
|
+
*
|
14
|
+
* when set to `false` forces quine cheats not to be used
|
15
|
+
*
|
16
|
+
* when left unset or set to `undefined`, automatically uses or doesn't use quine cheats based on character count
|
17
|
+
*/
|
25
18
|
forceQuineCheats: boolean;
|
19
|
+
}> & {
|
20
|
+
scriptName: string | true;
|
26
21
|
};
|
27
|
-
/**
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
* @param options {@link ProcessOptions details}
|
32
|
-
*/
|
33
|
-
export declare const processScript: (code: string, { minify: shouldMinify, uniqueID, scriptUser, scriptName, filePath, mangleNames, forceQuineCheats }?: LaxPartial<ProcessOptions>) => Promise<{
|
22
|
+
/** Minifies a given script
|
23
|
+
* @param code JavaScript or TypeScript code
|
24
|
+
* @param options {@link ProcessOptions details} */
|
25
|
+
export declare function processScript(code: string, { minify: shouldMinify, uniqueId, scriptUser, scriptName, filePath, mangleNames, forceQuineCheats }: ProcessOptions): Promise<{
|
34
26
|
script: string;
|
35
27
|
warnings: {
|
36
28
|
message: string;
|
37
29
|
line: number;
|
38
30
|
}[];
|
39
31
|
}>;
|
40
|
-
export default processScript;
|