@occultus/toolkit 0.23.2 → 0.23.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@occultus/toolkit",
3
- "version": "0.23.2",
3
+ "version": "0.23.3",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://codeberg.org/TeamOccultus/StarTenonAPI"
@@ -190,6 +190,7 @@ export function addEffect(
190
190
  for (const effect of effects) {
191
191
  if (duration === "infinite") {
192
192
  entity.runCommand(
193
+ // @ts-ignore
193
194
  `effect @s ${ensureNoNamespace(effect)} infinite ${options?.amplifier ?? 0} ${options?.showParticles ?? false}`
194
195
  );
195
196
  return;
package/tsconfig.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "noEmit": true,
9
9
  "noEmitOnError": true,
10
10
  "target": "es2022",
11
- "lib": ["es2020", "dom"],
11
+ "lib": ["es2021", "dom"],
12
12
  "strict": true,
13
13
  "moduleResolution": "bundler",
14
14
  "esModuleInterop": true,