@coherent.js/profiler 1.0.0-beta.2 → 1.0.0-beta.5
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 +16 -0
- package/package.json +2 -4
package/README.md
CHANGED
|
@@ -8,6 +8,22 @@ Advanced performance monitoring and profiling tools for Coherent.js applications
|
|
|
8
8
|
npm install @coherent.js/profiler
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
|
|
12
|
+
## Exports
|
|
13
|
+
|
|
14
|
+
Performance profiling tools
|
|
15
|
+
|
|
16
|
+
### Modular Imports (Tree-Shakable)
|
|
17
|
+
|
|
18
|
+
- Profiler utilities: `@coherent.js/profiler`
|
|
19
|
+
|
|
20
|
+
### Example Usage
|
|
21
|
+
|
|
22
|
+
```javascript
|
|
23
|
+
import { createProfiler } from '@coherent.js/profiler';
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
> **Note**: All exports are tree-shakable. Import only what you need for optimal bundle size.
|
|
11
27
|
## Usage
|
|
12
28
|
|
|
13
29
|
### Basic Profiling
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coherent.js/profiler",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.5",
|
|
4
4
|
"description": "Performance profiling and monitoring tools for Coherent.js applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -26,9 +26,6 @@
|
|
|
26
26
|
],
|
|
27
27
|
"author": "Coherent.js Team",
|
|
28
28
|
"license": "MIT",
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"@coherent.js/core": "1.0.0-beta.2"
|
|
31
|
-
},
|
|
32
29
|
"devDependencies": {
|
|
33
30
|
"vitest": "^3.2.4"
|
|
34
31
|
},
|
|
@@ -39,6 +36,7 @@
|
|
|
39
36
|
"publishConfig": {
|
|
40
37
|
"access": "public"
|
|
41
38
|
},
|
|
39
|
+
"sideEffects": false,
|
|
42
40
|
"scripts": {
|
|
43
41
|
"build": "node build.mjs",
|
|
44
42
|
"test": "vitest",
|