@flotrace/runtime 0.1.2 → 2.0.0
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/README.md +2 -0
- package/dist/index.d.mts +4 -1213
- package/dist/index.d.ts +4 -1213
- package/dist/index.js +305 -3810
- package/dist/index.mjs +514 -3963
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flotrace/runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Runtime package for FloTrace - enables real-time render tracking in your React app",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -20,11 +20,14 @@
|
|
|
20
20
|
"dev": "tsup --watch",
|
|
21
21
|
"typecheck": "tsc --noEmit",
|
|
22
22
|
"clean": "rm -rf dist",
|
|
23
|
-
"prepublishOnly": "npm run clean && npm run build && npm run typecheck",
|
|
23
|
+
"prepublishOnly": "npm run -w @flotrace/runtime-core build && npm run clean && npm run build && npm run typecheck",
|
|
24
24
|
"release:patch": "npm version patch && npm publish",
|
|
25
25
|
"release:minor": "npm version minor && npm publish",
|
|
26
26
|
"release:major": "npm version major && npm publish"
|
|
27
27
|
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@flotrace/runtime-core": "2.0.0"
|
|
30
|
+
},
|
|
28
31
|
"peerDependencies": {
|
|
29
32
|
"react": ">=16.9.0",
|
|
30
33
|
"@types/react": ">=16.9.0"
|