zylaris 1.0.6 → 1.0.7
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 +6 -9
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +14 -5
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# Zylaris Framework🚀
|
|
1
|
+
# Zylaris Framework 🚀
|
|
2
2
|
|
|
3
|
-
> The
|
|
3
|
+
> The compiler-driven web framework for the next generation. Zero Virtual DOM, fine-grained reactivity, and stellar performance.
|
|
4
4
|
|
|
5
|
-
[](https://github.com/zylarisjs/zylaris)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](https://www.typescriptlang.org/)
|
|
8
8
|
[](https://nodejs.org/)
|
|
@@ -516,7 +516,7 @@ zylaris-framework/
|
|
|
516
516
|
|
|
517
517
|
```bash
|
|
518
518
|
# Clone repository
|
|
519
|
-
git clone https://github.com/
|
|
519
|
+
git clone https://github.com/zylarisjs/zylaris.git
|
|
520
520
|
cd zylaris
|
|
521
521
|
|
|
522
522
|
# Install dependencies
|
|
@@ -543,16 +543,13 @@ pnpm run test
|
|
|
543
543
|
|
|
544
544
|
- [Discord](https://discord.gg/zylaris)
|
|
545
545
|
- [Twitter](https://twitter.com/zylaris)
|
|
546
|
-
- [GitHub Discussions](https://github.com/
|
|
546
|
+
- [GitHub Discussions](https://github.com/zylarisjs/zylaris/discussions)
|
|
547
547
|
|
|
548
548
|
---
|
|
549
549
|
|
|
550
550
|
## License
|
|
551
551
|
|
|
552
|
-
MIT
|
|
552
|
+
MIT © [zylaris.js](https://github.com/zylarisjs/)
|
|
553
553
|
|
|
554
554
|
---
|
|
555
555
|
|
|
556
|
-
**Built with ❤️ by the Zylaris Team**
|
|
557
|
-
|
|
558
|
-
*Universal Web Development*
|
package/dist/index.d.ts
CHANGED
|
@@ -7,5 +7,5 @@ export type { JSXElement, JSXNode } from './jsx-runtime.js';
|
|
|
7
7
|
export { defineConfig } from './config.js';
|
|
8
8
|
export type { ZylarisConfig } from './config.js';
|
|
9
9
|
export { withRetry, withTimeout, sleep, debounce, throttle, RetryError, } from './utils/retry.js';
|
|
10
|
-
export declare const version = "1.0.
|
|
10
|
+
export declare const version = "1.0.1";
|
|
11
11
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -12,5 +12,5 @@ export { defineConfig } from './config.js';
|
|
|
12
12
|
// Export utilities
|
|
13
13
|
export { withRetry, withTimeout, sleep, debounce, throttle, RetryError, } from './utils/retry.js';
|
|
14
14
|
// Version
|
|
15
|
-
export const version = '1.0.
|
|
15
|
+
export const version = '1.0.1';
|
|
16
16
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zylaris",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "The compiler-driven web framework for the next generation. Zero Virtual DOM, fine-grained reactivity, and stellar performance.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"@zylaris/reactivity": "^1.0.2"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/react": "^
|
|
42
|
-
"typescript": "^5.
|
|
43
|
-
"vitest": "^
|
|
41
|
+
"@types/react": "^19.2.14",
|
|
42
|
+
"typescript": "^5.9.3",
|
|
43
|
+
"vitest": "^4.0.18"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"react": "^18.0.0"
|
|
@@ -51,5 +51,14 @@
|
|
|
51
51
|
"jsx",
|
|
52
52
|
"zylaris"
|
|
53
53
|
],
|
|
54
|
-
"license": "MIT"
|
|
54
|
+
"license": "MIT",
|
|
55
|
+
"repository": {
|
|
56
|
+
"type": "git",
|
|
57
|
+
"url": "https://github.com/zylarisjs/zylaris.git"
|
|
58
|
+
},
|
|
59
|
+
"homepage": "https://github.com/zylarisjs/zylaris#readme",
|
|
60
|
+
"bugs": {
|
|
61
|
+
"url": "https://github.com/zylarisjs/zylaris/issues"
|
|
62
|
+
},
|
|
63
|
+
"author": "zylaris.js"
|
|
55
64
|
}
|