dphelper 4.0.0 → 4.0.1
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 +3 -4
- package/{index.js → dphelper.umd.js} +1 -1
- package/index.cjs +1 -1
- package/package.json +3 -7
- package/types/dphelper.d.ts +9 -9
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|

|
|
15
15
|

|
|
16
16
|
|
|
17
|
-

|
|
18
18
|

|
|
19
19
|

|
|
20
20
|

|
|
@@ -81,8 +81,9 @@ npm i dphelper --save-dev
|
|
|
81
81
|
Import it precisely **once** in your entry point (e.g., `index.js`, `main.ts`, or `App.tsx`):
|
|
82
82
|
|
|
83
83
|
```js
|
|
84
|
+
// IMPORT ONCE AT YOUR APP ENTRY POINT
|
|
85
|
+
|
|
84
86
|
import "dphelper";
|
|
85
|
-
// dphelper is now available globally across your entire project!
|
|
86
87
|
```
|
|
87
88
|
|
|
88
89
|
For plain HTML/CDN:
|
|
@@ -317,8 +318,6 @@ Manage your `dphelper` environment, monitor memory usage, and access documentati
|
|
|
317
318
|
|
|
318
319
|
---
|
|
319
320
|
|
|
320
|
-
---
|
|
321
|
-
|
|
322
321
|
## Environment Compatibility
|
|
323
322
|
|
|
324
323
|
`dphelper` tools are classified by their execution target to ensure stability across the stack.
|