Skip to content

Commit 80d5a8d

Browse files
chore(release): 21 packages
1 parent b484540 commit 80d5a8d

File tree

42 files changed

+1651
-1124
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1651
-1124
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-12-03)
4+
5+
### ♻️ Refactoring
6+
7+
- 💥 rename project from zen to rapid ([7c2dc8b](https://github.com/SylphxAI/rapid/commit/7c2dc8bef63f95513fb6c0b9e46c62103e241963))
8+
9+
### 🔧 Chores
10+
11+
- fix doctor issues - improve score to 84% ([e1659f3](https://github.com/SylphxAI/rapid/commit/e1659f36e5fdd2cfea645392a5986a074d9c096a))
12+
- complete zen → rapid rename cleanup ([b90a548](https://github.com/SylphxAI/rapid/commit/b90a548541cbb5ec0f798587cda1c2f5a47f5a12))
13+
14+
### 💥 Breaking Changes
15+
16+
- rename project from zen to rapid ([7c2dc8b](https://github.com/SylphxAI/rapid/commit/7c2dc8bef63f95513fb6c0b9e46c62103e241963))
17+
Complete project rename
Lines changed: 39 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,41 @@
11
{
2-
"name": "@rapid/babel-plugin-jsx",
3-
"version": "0.1.0",
4-
"description": "Babel plugin for Rapid JSX transform with lazy children evaluation",
5-
"type": "module",
6-
"main": "./dist/index.js",
7-
"types": "./dist/index.d.ts",
8-
"exports": {
9-
".": {
10-
"types": "./dist/index.d.ts",
11-
"import": "./dist/index.js"
12-
}
13-
},
14-
"files": ["dist"],
15-
"scripts": {
16-
"build": "bunup src/index.ts --format esm --dts --target node",
17-
"dev": "bunup src/index.ts --format esm --watch",
18-
"test": "bun test"
19-
},
20-
"keywords": ["rapid", "jsx", "babel", "transform", "reactive"],
21-
"author": "SylphxAI",
22-
"license": "MIT",
23-
"peerDependencies": {
24-
"@babel/core": "^7.0.0"
25-
},
26-
"devDependencies": {
27-
"@babel/core": "^7.28.5",
28-
"@babel/types": "^7.28.5",
29-
"@types/babel__core": "^7.20.5",
30-
"bunup": "^0.16.10",
31-
"typescript": "^5.8.3"
32-
}
2+
"name": "@rapid/babel-plugin-jsx",
3+
"version": "0.1.0",
4+
"description": "Babel plugin for Rapid JSX transform with lazy children evaluation",
5+
"type": "module",
6+
"main": "./dist/index.js",
7+
"types": "./dist/index.d.ts",
8+
"exports": {
9+
".": {
10+
"types": "./dist/index.d.ts",
11+
"import": "./dist/index.js"
12+
}
13+
},
14+
"files": [
15+
"dist"
16+
],
17+
"scripts": {
18+
"build": "bunup src/index.ts --format esm --dts --target node",
19+
"dev": "bunup src/index.ts --format esm --watch",
20+
"test": "bun test"
21+
},
22+
"keywords": [
23+
"rapid",
24+
"jsx",
25+
"babel",
26+
"transform",
27+
"reactive"
28+
],
29+
"author": "SylphxAI",
30+
"license": "MIT",
31+
"peerDependencies": {
32+
"@babel/core": "^7.0.0"
33+
},
34+
"devDependencies": {
35+
"@babel/core": "^7.28.5",
36+
"@babel/types": "^7.28.5",
37+
"@types/babel__core": "^7.20.5",
38+
"bunup": "^0.16.10",
39+
"typescript": "^5.8.3"
40+
}
3341
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
## 0.0.0 (2025-12-03)
4+
5+
### ♻️ Refactoring
6+
7+
- 💥 rename project from zen to rapid ([7c2dc8b](https://github.com/SylphxAI/rapid/commit/7c2dc8bef63f95513fb6c0b9e46c62103e241963))
8+
9+
### 🔧 Chores
10+
11+
- complete zen → rapid rename cleanup ([b90a548](https://github.com/SylphxAI/rapid/commit/b90a548541cbb5ec0f798587cda1c2f5a47f5a12))
12+
13+
### 💥 Breaking Changes
14+
15+
- rename project from zen to rapid ([7c2dc8b](https://github.com/SylphxAI/rapid/commit/7c2dc8bef63f95513fb6c0b9e46c62103e241963))
16+
Complete project rename
Lines changed: 77 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,79 @@
11
{
2-
"name": "@rapid/compiler",
3-
"version": "0.0.0",
4-
"description": "Optional JSX transformer for Rapid - auto-lazy children and signal unwrapping",
5-
"type": "module",
6-
"main": "./dist/index.js",
7-
"module": "./dist/index.js",
8-
"types": "./dist/index.d.ts",
9-
"exports": {
10-
".": {
11-
"types": "./dist/index.d.ts",
12-
"import": "./dist/index.js"
13-
},
14-
"./vite": {
15-
"types": "./dist/vite.d.ts",
16-
"import": "./dist/vite.js"
17-
},
18-
"./webpack": {
19-
"types": "./dist/webpack.d.ts",
20-
"import": "./dist/webpack.js"
21-
},
22-
"./metro": {
23-
"types": "./dist/metro.d.ts",
24-
"import": "./dist/metro.js"
25-
}
26-
},
27-
"files": ["dist"],
28-
"scripts": {
29-
"build": "tsup",
30-
"dev": "bun run --watch src/index.ts",
31-
"test": "bun test",
32-
"typecheck": "tsc --noEmit"
33-
},
34-
"keywords": ["rapid", "compiler", "jsx", "transform", "vite", "webpack", "metro", "plugin"],
35-
"author": "Rapid Team",
36-
"license": "MIT",
37-
"repository": {
38-
"type": "git",
39-
"url": "git+https://github.com/SylphxAI/rapid.git",
40-
"directory": "packages/rapid-compiler"
41-
},
42-
"dependencies": {
43-
"@babel/core": "^7.26.0",
44-
"@babel/plugin-syntax-jsx": "^7.25.9",
45-
"@babel/plugin-syntax-typescript": "^7.25.9",
46-
"@babel/plugin-transform-react-jsx": "^7.25.9",
47-
"@babel/traverse": "^7.26.5",
48-
"@babel/types": "^7.26.5"
49-
},
50-
"peerDependencies": {
51-
"vite": ">=5.0.0"
52-
},
53-
"peerDependenciesMeta": {
54-
"vite": {
55-
"optional": true
56-
}
57-
},
58-
"devDependencies": {
59-
"@types/babel__core": "^7.20.5",
60-
"@types/babel__traverse": "^7.20.6",
61-
"tsup": "^8.3.5",
62-
"typescript": "^5.8.3",
63-
"vite": "^7.2.2"
64-
},
65-
"publishConfig": {
66-
"access": "public"
67-
}
2+
"name": "@rapid/compiler",
3+
"version": "0.0.0",
4+
"description": "Optional JSX transformer for Rapid - auto-lazy children and signal unwrapping",
5+
"type": "module",
6+
"main": "./dist/index.js",
7+
"module": "./dist/index.js",
8+
"types": "./dist/index.d.ts",
9+
"exports": {
10+
".": {
11+
"types": "./dist/index.d.ts",
12+
"import": "./dist/index.js"
13+
},
14+
"./vite": {
15+
"types": "./dist/vite.d.ts",
16+
"import": "./dist/vite.js"
17+
},
18+
"./webpack": {
19+
"types": "./dist/webpack.d.ts",
20+
"import": "./dist/webpack.js"
21+
},
22+
"./metro": {
23+
"types": "./dist/metro.d.ts",
24+
"import": "./dist/metro.js"
25+
}
26+
},
27+
"files": [
28+
"dist"
29+
],
30+
"scripts": {
31+
"build": "tsup",
32+
"dev": "bun run --watch src/index.ts",
33+
"test": "bun test",
34+
"typecheck": "tsc --noEmit"
35+
},
36+
"keywords": [
37+
"rapid",
38+
"compiler",
39+
"jsx",
40+
"transform",
41+
"vite",
42+
"webpack",
43+
"metro",
44+
"plugin"
45+
],
46+
"author": "Rapid Team",
47+
"license": "MIT",
48+
"repository": {
49+
"type": "git",
50+
"url": "git+https://github.com/SylphxAI/rapid.git",
51+
"directory": "packages/rapid-compiler"
52+
},
53+
"dependencies": {
54+
"@babel/core": "^7.26.0",
55+
"@babel/plugin-syntax-jsx": "^7.25.9",
56+
"@babel/plugin-syntax-typescript": "^7.25.9",
57+
"@babel/plugin-transform-react-jsx": "^7.25.9",
58+
"@babel/traverse": "^7.26.5",
59+
"@babel/types": "^7.26.5"
60+
},
61+
"peerDependencies": {
62+
"vite": ">=5.0.0"
63+
},
64+
"peerDependenciesMeta": {
65+
"vite": {
66+
"optional": true
67+
}
68+
},
69+
"devDependencies": {
70+
"@types/babel__core": "^7.20.5",
71+
"@types/babel__traverse": "^7.20.6",
72+
"tsup": "^8.3.5",
73+
"typescript": "^5.8.3",
74+
"vite": "^7.2.2"
75+
},
76+
"publishConfig": {
77+
"access": "public"
78+
}
6879
}

packages/rapid-native/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
## 0.0.0 (2025-12-03)
4+
5+
### ♻️ Refactoring
6+
7+
- 💥 rename project from zen to rapid ([7c2dc8b](https://github.com/SylphxAI/rapid/commit/7c2dc8bef63f95513fb6c0b9e46c62103e241963))
8+
9+
### 🔧 Chores
10+
11+
- complete zen → rapid rename cleanup ([b90a548](https://github.com/SylphxAI/rapid/commit/b90a548541cbb5ec0f798587cda1c2f5a47f5a12))
12+
13+
### 💥 Breaking Changes
14+
15+
- rename project from zen to rapid ([7c2dc8b](https://github.com/SylphxAI/rapid/commit/7c2dc8bef63f95513fb6c0b9e46c62103e241963))
16+
Complete project rename

packages/rapid-native/package.json

Lines changed: 54 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,56 @@
11
{
2-
"name": "@rapid/native",
3-
"version": "0.0.0",
4-
"description": "Native renderer for Rapid framework - iOS and Android support",
5-
"type": "module",
6-
"main": "./dist/index.js",
7-
"types": "./dist/index.d.ts",
8-
"exports": {
9-
".": {
10-
"types": "./dist/index.d.ts",
11-
"import": "./dist/index.js"
12-
},
13-
"./jsx-runtime": {
14-
"types": "./dist/jsx-runtime.d.ts",
15-
"import": "./dist/jsx-runtime.js"
16-
},
17-
"./jsx-dev-runtime": {
18-
"types": "./dist/jsx-runtime.d.ts",
19-
"import": "./dist/jsx-runtime.js"
20-
}
21-
},
22-
"files": ["dist"],
23-
"scripts": {
24-
"build": "tsup",
25-
"dev": "bun run --watch src/index.ts",
26-
"typecheck": "tsc --noEmit"
27-
},
28-
"keywords": ["rapid", "native", "react-native", "ios", "android", "mobile"],
29-
"author": "Rapid Team",
30-
"license": "MIT",
31-
"repository": {
32-
"type": "git",
33-
"url": "git+https://github.com/SylphxAI/rapid.git",
34-
"directory": "packages/rapid-native"
35-
},
36-
"dependencies": {
37-
"@rapid/runtime": "workspace:*",
38-
"@rapid/signal": "workspace:*"
39-
},
40-
"devDependencies": {
41-
"tsup": "^8.3.5",
42-
"typescript": "^5.8.3"
43-
},
44-
"publishConfig": {
45-
"access": "public"
46-
}
2+
"name": "@rapid/native",
3+
"version": "0.0.0",
4+
"description": "Native renderer for Rapid framework - iOS and Android support",
5+
"type": "module",
6+
"main": "./dist/index.js",
7+
"types": "./dist/index.d.ts",
8+
"exports": {
9+
".": {
10+
"types": "./dist/index.d.ts",
11+
"import": "./dist/index.js"
12+
},
13+
"./jsx-runtime": {
14+
"types": "./dist/jsx-runtime.d.ts",
15+
"import": "./dist/jsx-runtime.js"
16+
},
17+
"./jsx-dev-runtime": {
18+
"types": "./dist/jsx-runtime.d.ts",
19+
"import": "./dist/jsx-runtime.js"
20+
}
21+
},
22+
"files": [
23+
"dist"
24+
],
25+
"scripts": {
26+
"build": "tsup",
27+
"dev": "bun run --watch src/index.ts",
28+
"typecheck": "tsc --noEmit"
29+
},
30+
"keywords": [
31+
"rapid",
32+
"native",
33+
"react-native",
34+
"ios",
35+
"android",
36+
"mobile"
37+
],
38+
"author": "Rapid Team",
39+
"license": "MIT",
40+
"repository": {
41+
"type": "git",
42+
"url": "git+https://github.com/SylphxAI/rapid.git",
43+
"directory": "packages/rapid-native"
44+
},
45+
"dependencies": {
46+
"@rapid/runtime": "workspace:*",
47+
"@rapid/signal": "workspace:*"
48+
},
49+
"devDependencies": {
50+
"tsup": "^8.3.5",
51+
"typescript": "^5.8.3"
52+
},
53+
"publishConfig": {
54+
"access": "public"
55+
}
4756
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Changelog
2+
3+
## 0.0.0 (2025-12-03)
4+
5+
### ♻️ Refactoring
6+
7+
- 💥 rename project from zen to rapid ([7c2dc8b](https://github.com/SylphxAI/rapid/commit/7c2dc8bef63f95513fb6c0b9e46c62103e241963))
8+
9+
### 🔧 Chores
10+
11+
- fix doctor issues - improve score to 84% ([e1659f3](https://github.com/SylphxAI/rapid/commit/e1659f36e5fdd2cfea645392a5986a074d9c096a))
12+
- complete zen → rapid rename cleanup ([b90a548](https://github.com/SylphxAI/rapid/commit/b90a548541cbb5ec0f798587cda1c2f5a47f5a12))
13+
14+
### 💥 Breaking Changes
15+
16+
- rename project from zen to rapid ([7c2dc8b](https://github.com/SylphxAI/rapid/commit/7c2dc8bef63f95513fb6c0b9e46c62103e241963))
17+
Complete project rename

0 commit comments

Comments
 (0)