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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. 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
- "name": "roqa",
3
- "version": "0.0.6",
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
- "scripts": {
55
- "test": "vitest run",
56
- "test:watch": "vitest",
57
- "test:unit": "vitest run --project unit",
58
- "test:browser": "vitest run --project browser",
59
- "test:coverage": "vitest run --coverage"
60
- },
61
- "dependencies": {
62
- "@babel/generator": "catalog:default",
63
- "@babel/parser": "catalog:default",
64
- "@babel/traverse": "catalog:default",
65
- "@babel/types": "catalog:default",
66
- "magic-string": "catalog:default"
67
- },
68
- "devDependencies": {
69
- "@vitest/browser": "^3.0.0",
70
- "@vitest/coverage-v8": "^3.0.0",
71
- "playwright": "^1.49.0",
72
- "vitest": "^3.0.0"
73
- },
74
- "engines": {
75
- "node": ">=20.0.0"
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
+ }