roqa 0.0.6 → 0.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/CHANGELOG.md +6 -0
- package/package.json +76 -76
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.0.7] - 2026-03-31
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Fixed broken npm package publish — dependencies now correctly resolved at publish time using `pnpm publish` (previously `catalog:` version references were published verbatim, making the package uninstallable via npm/yarn)
|
|
13
|
+
|
|
8
14
|
## [0.0.6] - 2026-03-31
|
|
9
15
|
|
|
10
16
|
### Added
|
package/package.json
CHANGED
|
@@ -1,77 +1,77 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
}
|
|
2
|
+
"name": "roqa",
|
|
3
|
+
"version": "0.0.7",
|
|
4
|
+
"description": "Roqa is a reactive UI framework",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"UI",
|
|
7
|
+
"framework",
|
|
8
|
+
"roqa",
|
|
9
|
+
"roqajs",
|
|
10
|
+
"web components",
|
|
11
|
+
"custom elements",
|
|
12
|
+
"jsx",
|
|
13
|
+
"compiler"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://roqa.dev",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/roqajs/roqa/issues"
|
|
18
|
+
},
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"author": "Hawk Ticehurst",
|
|
21
|
+
"sideEffects": false,
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/roqajs/roqa.git",
|
|
25
|
+
"directory": "packages/roqa"
|
|
26
|
+
},
|
|
27
|
+
"type": "module",
|
|
28
|
+
"files": [
|
|
29
|
+
"src",
|
|
30
|
+
"types",
|
|
31
|
+
"README.md",
|
|
32
|
+
"LICENSE",
|
|
33
|
+
"CHANGELOG.md"
|
|
34
|
+
],
|
|
35
|
+
"exports": {
|
|
36
|
+
".": {
|
|
37
|
+
"types": "./types/index.d.ts",
|
|
38
|
+
"import": "./src/runtime/index.js",
|
|
39
|
+
"browser": "./src/runtime/index.js",
|
|
40
|
+
"default": "./src/runtime/index.js"
|
|
41
|
+
},
|
|
42
|
+
"./package.json": "./package.json",
|
|
43
|
+
"./compiler": {
|
|
44
|
+
"types": "./types/compiler.d.ts",
|
|
45
|
+
"import": "./src/compiler/index.js",
|
|
46
|
+
"default": "./src/compiler/index.js"
|
|
47
|
+
},
|
|
48
|
+
"./jsx-runtime": {
|
|
49
|
+
"types": "./src/jsx-runtime.d.ts",
|
|
50
|
+
"import": "./src/jsx-runtime.js",
|
|
51
|
+
"default": "./src/jsx-runtime.js"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@babel/generator": "^7.28.5",
|
|
56
|
+
"@babel/parser": "^7.28.5",
|
|
57
|
+
"@babel/traverse": "^7.28.5",
|
|
58
|
+
"@babel/types": "^7.28.5",
|
|
59
|
+
"magic-string": "^0.30.21"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@vitest/browser": "^3.0.0",
|
|
63
|
+
"@vitest/coverage-v8": "^3.0.0",
|
|
64
|
+
"playwright": "^1.49.0",
|
|
65
|
+
"vitest": "^3.0.0"
|
|
66
|
+
},
|
|
67
|
+
"engines": {
|
|
68
|
+
"node": ">=20.0.0"
|
|
69
|
+
},
|
|
70
|
+
"scripts": {
|
|
71
|
+
"test": "vitest run",
|
|
72
|
+
"test:watch": "vitest",
|
|
73
|
+
"test:unit": "vitest run --project unit",
|
|
74
|
+
"test:browser": "vitest run --project browser",
|
|
75
|
+
"test:coverage": "vitest run --coverage"
|
|
76
|
+
}
|
|
77
|
+
}
|