isaacscript-common 2.0.7 → 2.0.8

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.
@@ -47,10 +47,10 @@ import { SaveData } from "../../types/private/SaveData";
47
47
  * saveDataManager("feature1", v);
48
48
  * }
49
49
  *
50
- * // Elsewhere in the file, use your variables
50
+ * // Elsewhere in the file, use your variables.
51
51
  * function feature1Function() {
52
52
  * if (v.run.foo1 > 0) {
53
- * // Do stuff
53
+ * // TODO
54
54
  * }
55
55
  * }
56
56
  * ```
@@ -73,7 +73,7 @@ import { SaveData } from "../../types/private/SaveData";
73
73
  * @param key The name of the file or feature that is submitting data to be managed by the save data
74
74
  * manager. The save data manager will throw an error if the key is already registered.
75
75
  * @param v An object that corresponds to the `SaveData` interface. The object is conventionally
76
- * called "v" for brevity (which is short for "local variables").
76
+ * called "v" for brevity. ("v" is short for "local variables").
77
77
  * @param conditionalFunc An optional function to run upon saving this key to disk. For example,
78
78
  * this allows features to only save data to disk if the feature is enabled. Specify a value of `()
79
79
  * => false` to completely disable saving this feature to disk. This is useful if you are using data
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-common",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "description": "Helper functions for IsaacScript mods",
5
5
  "keywords": [
6
6
  "isaac",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "devDependencies": {
31
31
  "isaacscript-lint": "^1.0.141",
32
- "isaacscript-spell": "file:../isaacscript-spell",
32
+ "isaacscript-spell": "^1.0.3",
33
33
  "isaacscript-tsconfig": "^1.1.16",
34
34
  "ts-node": "^10.7.0",
35
35
  "typedoc": "^0.22.15",