@techstream/quark-core 1.2.0 → 1.4.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/test-imports.mjs DELETED
@@ -1,21 +0,0 @@
1
- // Test script - verify all core modules load
2
- import("./src/auth/index.js").then(() => {
3
- console.log("✅ Auth module loaded");
4
- });
5
-
6
- import("./src/errors.js").then(() => {
7
- console.log("✅ Errors module loaded");
8
- });
9
-
10
- import("./src/utils.js").then(() => {
11
- console.log("✅ Utils module loaded");
12
- });
13
-
14
- import("./src/queue/index.js").then(() => {
15
- console.log("✅ Queue module loaded");
16
- });
17
-
18
- setTimeout(() => {
19
- console.log("\n✨ All core modules are properly configured!");
20
- process.exit(0);
21
- }, 500);