bippy 0.6.1-dev.61475ed → 0.6.1-dev.879f777

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 (69) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +177 -500
  3. package/dist/core.cjs +1 -1
  4. package/dist/core.d.cts +45 -105
  5. package/dist/core.d.ts +45 -105
  6. package/dist/core.js +1 -1
  7. package/dist/core2.cjs +9 -0
  8. package/dist/core2.d.cts +11 -3
  9. package/dist/core2.d.ts +11 -3
  10. package/dist/core2.js +9 -0
  11. package/dist/errors.d.cts +410 -0
  12. package/dist/errors.d.ts +410 -0
  13. package/dist/index.cjs +1 -1
  14. package/dist/index.d.cts +14 -3
  15. package/dist/index.d.ts +14 -3
  16. package/dist/index.js +1 -1
  17. package/dist/install-hook-only.cjs +1 -1
  18. package/dist/install-hook-only.d.cts +9 -1
  19. package/dist/install-hook-only.d.ts +9 -1
  20. package/dist/install-hook-only.js +1 -1
  21. package/dist/rdt-hook.cjs +1 -1
  22. package/dist/rdt-hook.js +1 -1
  23. package/dist/source.cjs +14 -5
  24. package/dist/source.d.cts +86 -69
  25. package/dist/source.d.ts +86 -69
  26. package/dist/source.js +14 -5
  27. package/package.json +26 -17
  28. package/src/core.ts +340 -673
  29. package/src/errors.ts +34 -0
  30. package/src/index.ts +1 -0
  31. package/src/install-hook-only.ts +2 -2
  32. package/src/rdt-hook.ts +160 -161
  33. package/src/react-internals/generated/react-work-tags.ts +318 -0
  34. package/src/react-internals/index.ts +67 -0
  35. package/src/react-internals/semver.ts +80 -0
  36. package/src/react-internals/types.ts +186 -0
  37. package/src/react.ts +76 -0
  38. package/src/source/constants.ts +1 -1
  39. package/src/source/error-stack.ts +11 -0
  40. package/src/source/get-display-name-from-source.ts +44 -40
  41. package/src/source/get-source.ts +43 -26
  42. package/src/source/index.ts +11 -1
  43. package/src/source/inspect-hooks.ts +220 -207
  44. package/src/source/owner-stack.ts +119 -174
  45. package/src/source/parse-debug-stack.ts +4 -4
  46. package/src/source/parse-hook-names.ts +14 -53
  47. package/src/source/parse-stack.ts +14 -31
  48. package/src/source/renderer-dispatchers.ts +30 -0
  49. package/src/source/symbolication.ts +709 -120
  50. package/dist/get-source.cjs +0 -19
  51. package/dist/get-source.js +0 -19
  52. package/dist/index.iife.js +0 -9
  53. package/dist/install-hook-only.iife.js +0 -9
  54. package/dist/react-refresh.cjs +0 -9
  55. package/dist/react-refresh.d.cts +0 -66
  56. package/dist/react-refresh.d.ts +0 -66
  57. package/dist/react-refresh.js +0 -9
  58. package/dist/unsubscribe.d.cts +0 -298
  59. package/dist/unsubscribe.d.ts +0 -298
  60. package/src/react-refresh/constants.ts +0 -9
  61. package/src/react-refresh/detect-hmr-transport.ts +0 -33
  62. package/src/react-refresh/index.ts +0 -173
  63. package/src/react-refresh/metro-hmr-transport.ts +0 -188
  64. package/src/react-refresh/next-webpack-hmr-transport.ts +0 -72
  65. package/src/react-refresh/normalize-hmr-file-path.ts +0 -24
  66. package/src/react-refresh/types.ts +0 -7
  67. package/src/react-refresh/vite-hmr-transport.ts +0 -116
  68. package/src/types.ts +0 -438
  69. package/src/unsubscribe.ts +0 -17
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2024 Aiden Bai
1
+ Copyright 2024-present Aiden Bai
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
4