@rbxts/prototype 0.0.1 → 0.0.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/out/prototype.lua CHANGED
@@ -110,7 +110,7 @@ do
110
110
  return value
111
111
  end
112
112
  function PrototypeKindData:ResolveInheritance(id)
113
- if not Flamework._implements(self.ctor, "@rbxts/prototype:types@IInheritingPrototype") then
113
+ if not Flamework._implements(self.ctor, "$prototype:types@IInheritingPrototype") then
114
114
  return nil
115
115
  end
116
116
  local _instances = self.Instances
@@ -426,7 +426,7 @@ do
426
426
  end
427
427
  do
428
428
  -- (Flamework) PrototypeHandler metadata
429
- Reflect.defineMetadata(PrototypeHandler, "identifier", "@rbxts/prototype:prototype@PrototypeHandler")
429
+ Reflect.defineMetadata(PrototypeHandler, "identifier", "$prototype:prototype@PrototypeHandler")
430
430
  end
431
431
  end
432
432
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/prototype",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "",
5
5
  "main": "out/init.lua",
6
6
  "scripts": {
@@ -37,7 +37,9 @@
37
37
  "typescript": "^5.4.5"
38
38
  },
39
39
  "dependencies": {
40
- "@flamework/core": "^1.3.1",
41
40
  "@rbxts/testez": "^0.4.2-ts.0"
41
+ },
42
+ "peerDependencies": {
43
+ "@flamework/core": "*"
42
44
  }
43
45
  }