@bscotch/yy 0.2.1 → 0.3.1

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.
Files changed (58) hide show
  1. package/README.md +5 -1
  2. package/dist/Schema.d.ts +1 -0
  3. package/dist/Schema.d.ts.map +1 -0
  4. package/dist/Schema.js +2 -0
  5. package/dist/Schema.js.map +1 -0
  6. package/dist/Yy.d.ts +4417 -9
  7. package/dist/Yy.d.ts.map +1 -1
  8. package/dist/Yy.js +142 -24
  9. package/dist/Yy.js.map +1 -1
  10. package/dist/Yy.parse.d.ts +2 -1
  11. package/dist/Yy.parse.d.ts.map +1 -1
  12. package/dist/Yy.parse.js +3 -3
  13. package/dist/Yy.parse.js.map +1 -1
  14. package/dist/Yy.stringify.d.ts +2 -1
  15. package/dist/Yy.stringify.d.ts.map +1 -1
  16. package/dist/Yy.stringify.js +11 -12
  17. package/dist/Yy.stringify.js.map +1 -1
  18. package/dist/index.d.ts +7 -0
  19. package/dist/index.d.ts.map +1 -1
  20. package/dist/index.js +7 -0
  21. package/dist/index.js.map +1 -1
  22. package/dist/types/YyBase.d.ts +47 -0
  23. package/dist/types/YyBase.d.ts.map +1 -0
  24. package/dist/types/YyBase.js +38 -0
  25. package/dist/types/YyBase.js.map +1 -0
  26. package/dist/types/YyObject.d.ts +463 -0
  27. package/dist/types/YyObject.d.ts.map +1 -0
  28. package/dist/types/YyObject.js +109 -0
  29. package/dist/types/YyObject.js.map +1 -0
  30. package/dist/types/YyRoom.d.ts +1544 -0
  31. package/dist/types/YyRoom.d.ts.map +1 -0
  32. package/dist/types/YyRoom.js +156 -0
  33. package/dist/types/YyRoom.js.map +1 -0
  34. package/dist/types/YyScript.d.ts +48 -0
  35. package/dist/types/YyScript.d.ts.map +1 -0
  36. package/dist/types/YyScript.js +9 -0
  37. package/dist/types/YyScript.js.map +1 -0
  38. package/dist/types/YySound.d.ts +116 -0
  39. package/dist/types/YySound.d.ts.map +1 -0
  40. package/dist/types/YySound.js +62 -0
  41. package/dist/types/YySound.js.map +1 -0
  42. package/dist/types/YySprite.d.ts +7829 -0
  43. package/dist/types/YySprite.d.ts.map +1 -0
  44. package/dist/types/YySprite.js +410 -0
  45. package/dist/types/YySprite.js.map +1 -0
  46. package/dist/types/YySprite.lib.d.ts +421 -0
  47. package/dist/types/YySprite.lib.d.ts.map +1 -0
  48. package/dist/types/YySprite.lib.js +27 -0
  49. package/dist/types/YySprite.lib.js.map +1 -0
  50. package/dist/types/Yyp.d.ts +589 -0
  51. package/dist/types/Yyp.d.ts.map +1 -0
  52. package/dist/types/Yyp.js +100 -0
  53. package/dist/types/Yyp.js.map +1 -0
  54. package/dist/types/utility.d.ts +74 -0
  55. package/dist/types/utility.d.ts.map +1 -0
  56. package/dist/types/utility.js +105 -0
  57. package/dist/types/utility.js.map +1 -0
  58. package/package.json +11 -5
package/README.md CHANGED
@@ -4,7 +4,11 @@ Read and write GameMaker's `.yyp` and `.yy` files!
4
4
 
5
5
  [GameMaker](https://gamemaker.io/en) projects consist of a variety of filetypes, with much of the core metadata described in the project root `.yyp` file and resource-specific `.yy` files. Being able to manipulate these files programmatically, outside of GameMaker's editor, is useful for building custom pipelines.
6
6
 
7
- This package provides parsing, stringifying, and reading/writing of GameMaker's `.yyp` and `.yy` files.
7
+ This package provides parse, strinfification, validation, and reading/writing of GameMaker's `.yyp` and `.yy` files.
8
+
9
+ ## GameMaker Compatibility
10
+
11
+ Different GameMaker versions can have different project file formats. This package aims to support recent versions of GameMaker only, with some amount of backwards compatibility.
8
12
 
9
13
  ## Why use this package?
10
14
 
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=Schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../src/Schema.ts"],"names":[],"mappings":""}
package/dist/Schema.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=Schema.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Schema.js","sourceRoot":"","sources":["../src/Schema.ts"],"names":[],"mappings":""}