@vencord-companion/global-env-parser 1.1.0 → 1.1.2
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/dist/GlobalEnvParser.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AstParser } from "@vencord-companion/ast-parser/AstParser";
|
|
2
|
-
import type { EnvBuildVars, JsonType, MaybeLiteralJsonType, NonLiteral } from "./types";
|
|
2
|
+
import type { EnvBuildVars, JsonType, MaybeLiteralJsonType, NonLiteral } from "./types.js";
|
|
3
3
|
export declare class GlobalEnvParser extends AstParser {
|
|
4
4
|
static readonly SYM_UNSERIALIZABLE: unique symbol;
|
|
5
5
|
static readonly SYM_UNREADABLE_KEYS: unique symbol;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { GlobalEnvParser, } from "./GlobalEnvParser";
|
|
2
|
-
export type { EnvBuildVars, JsonType, MaybeLiteralJsonType, NonLiteral, } from "./types";
|
|
1
|
+
export { GlobalEnvParser, } from "./GlobalEnvParser.js";
|
|
2
|
+
export type { EnvBuildVars, JsonType, MaybeLiteralJsonType, NonLiteral, } from "./types.js";
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { GlobalEnvParser, } from "./GlobalEnvParser";
|
|
1
|
+
export { GlobalEnvParser, } from "./GlobalEnvParser.js";
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vencord-companion/global-env-parser",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "sadan",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"keywords": [],
|
|
15
15
|
"license": "LGPL-3.0-or-later",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@vencord-companion/
|
|
18
|
-
"@vencord-companion/
|
|
17
|
+
"@vencord-companion/ast-parser": "1.1.2",
|
|
18
|
+
"@vencord-companion/shared": "1.1.2"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"ts-api-utils": "^2.1.0",
|
|
@@ -29,6 +29,6 @@
|
|
|
29
29
|
"preversion": "mkdir .git || :",
|
|
30
30
|
"bump": "npm version",
|
|
31
31
|
"postversion": "rmdir .git",
|
|
32
|
-
"build": "tsc -b"
|
|
32
|
+
"build": "tsc -b && tsc-alias -f"
|
|
33
33
|
}
|
|
34
34
|
}
|