@etothepii/satisfactory-file-parser 0.4.5 → 0.4.7
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/build/index.d.ts +23 -3
- package/build/index.js +24 -5
- package/build/parser/satisfactory/edit/edit-constants.d.ts +12 -0
- package/build/parser/satisfactory/edit/edit-constants.js +12 -0
- package/build/parser/satisfactory/objects/DataFields.d.ts +2 -37
- package/build/parser/satisfactory/objects/DataFields.js +185 -75
- package/build/parser/satisfactory/objects/SaveObject.d.ts +2 -2
- package/build/parser/satisfactory/objects/property/generic/ArrayProperty.d.ts +21 -0
- package/build/parser/satisfactory/objects/property/generic/ArrayProperty.js +169 -0
- package/build/parser/satisfactory/objects/property/generic/BasicProperty.d.ts +25 -0
- package/build/parser/satisfactory/objects/property/generic/BasicProperty.js +27 -0
- package/build/parser/satisfactory/objects/property/generic/BoolProperty.d.ts +13 -0
- package/build/parser/satisfactory/objects/property/generic/BoolProperty.js +30 -0
- package/build/parser/satisfactory/objects/property/generic/ByteProperty.d.ts +17 -0
- package/build/parser/satisfactory/objects/property/generic/ByteProperty.js +50 -0
- package/build/parser/satisfactory/objects/property/generic/DoubleProperty.d.ts +13 -0
- package/build/parser/satisfactory/objects/property/generic/DoubleProperty.js +30 -0
- package/build/parser/satisfactory/objects/property/generic/EnumProperty.d.ts +19 -0
- package/build/parser/satisfactory/objects/property/generic/EnumProperty.js +33 -0
- package/build/parser/satisfactory/objects/property/generic/FloatProperty.d.ts +13 -0
- package/build/parser/satisfactory/objects/property/generic/FloatProperty.js +30 -0
- package/build/parser/satisfactory/objects/property/generic/Int32Property.d.ts +13 -0
- package/build/parser/satisfactory/objects/property/generic/Int32Property.js +30 -0
- package/build/parser/satisfactory/objects/property/generic/Int64Property.d.ts +13 -0
- package/build/parser/satisfactory/objects/property/generic/Int64Property.js +30 -0
- package/build/parser/satisfactory/objects/property/generic/Int8Property.d.ts +13 -0
- package/build/parser/satisfactory/objects/property/generic/Int8Property.js +30 -0
- package/build/parser/satisfactory/objects/property/generic/MapProperty.d.ts +21 -0
- package/build/parser/satisfactory/objects/property/generic/MapProperty.js +160 -0
- package/build/parser/satisfactory/objects/property/generic/ObjectProperty.d.ts +14 -0
- package/build/parser/satisfactory/objects/property/generic/ObjectProperty.js +35 -0
- package/build/parser/satisfactory/objects/property/generic/SetProperty.d.ts +11 -0
- package/build/parser/satisfactory/objects/property/generic/SetProperty.js +89 -0
- package/build/parser/satisfactory/objects/property/generic/SoftObjectProperty.d.ts +12 -0
- package/build/parser/satisfactory/objects/property/generic/SoftObjectProperty.js +25 -0
- package/build/parser/satisfactory/objects/property/generic/StrProperty.d.ts +13 -0
- package/build/parser/satisfactory/objects/property/generic/StrProperty.js +30 -0
- package/build/parser/satisfactory/objects/property/generic/StructProperty.d.ts +69 -0
- package/build/parser/satisfactory/objects/property/generic/StructProperty.js +340 -0
- package/build/parser/satisfactory/objects/property/generic/TextProperty.d.ts +29 -0
- package/build/parser/satisfactory/objects/property/generic/TextProperty.js +109 -0
- package/build/parser/satisfactory/objects/property/generic/Uint32Property.d.ts +13 -0
- package/build/parser/satisfactory/objects/property/generic/Uint32Property.js +30 -0
- package/build/parser/satisfactory/objects/property/generic/Uint64Property.d.ts +13 -0
- package/build/parser/satisfactory/objects/property/generic/Uint64Property.js +30 -0
- package/build/parser/satisfactory/objects/property/generic/Uint8Property.d.ts +13 -0
- package/build/parser/satisfactory/objects/property/generic/Uint8Property.js +30 -0
- package/build/parser/satisfactory/objects/property/special/SpecialAnyProperty.d.ts +49 -0
- package/build/parser/satisfactory/objects/property/special/SpecialAnyProperty.js +2 -0
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etothepii/satisfactory-file-parser",
|
|
3
3
|
"author": "etothepii",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.7",
|
|
5
5
|
"description": "A file parser for satisfactory files. Includes save files and blueprint files.",
|
|
6
6
|
"types": "./build/index.d.ts",
|
|
7
7
|
"main": "./build/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"typescript"
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
17
|
-
"test": "jest --config=jest.config.json --max_old_space_size=30720",
|
|
17
|
+
"test": "set PARSER_DEBUG=debug&& jest --config=jest.config.json --max_old_space_size=30720",
|
|
18
18
|
"build": "tsc && npm run bundle",
|
|
19
19
|
"bundle": "npx webpack && dts-bundle-generator -o dist/index.d.ts src/index.ts",
|
|
20
20
|
"prepublishOnly": "npm run build && npm version patch"
|