@ruvyxa/adapter-firebase 1.0.31 → 1.1.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/README.md +19 -3
- package/package.json +27 -7
package/README.md
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://github.com/thirawat27/Ruvyxa">
|
|
3
|
+
<img src="https://raw.githubusercontent.com/thirawat27/Ruvyxa/main/assets/branding/ruvyxa.png" alt="Ruvyxa" width="140" height="140" />
|
|
4
|
+
</a>
|
|
5
|
+
</p>
|
|
2
6
|
|
|
3
|
-
|
|
4
|
-
|
|
7
|
+
<h1 align="center">@ruvyxa/adapter-firebase</h1>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
Full-stack Firebase Hosting adapter for Ruvyxa. It publishes static assets to Firebase's CDN and<br/>
|
|
11
|
+
rewrites dynamic requests to a generated second-generation HTTPS function.
|
|
12
|
+
</p>
|
|
13
|
+
|
|
14
|
+
<p align="center">
|
|
15
|
+
<a href="https://www.npmjs.com/package/@ruvyxa/adapter-firebase"><img src="https://img.shields.io/npm/v/@ruvyxa/adapter-firebase?style=flat-square" alt="npm version" /></a>
|
|
16
|
+
<a href="https://www.npmjs.com/package/@ruvyxa/adapter-firebase"><img src="https://img.shields.io/node/v/@ruvyxa/adapter-firebase?style=flat-square&label=node" alt="Supported Node version" /></a>
|
|
17
|
+
<img src="https://img.shields.io/badge/license-Apache%202.0-green?style=flat-square" alt="License" />
|
|
18
|
+
</p>
|
|
19
|
+
|
|
20
|
+
---
|
|
5
21
|
|
|
6
22
|
```bash
|
|
7
23
|
npm run build -- --adapter firebase
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ruvyxa/adapter-firebase",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Deploy full-stack Ruvyxa applications to Firebase Hosting with CDN assets and a generated Cloud Functions v2 backend.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -14,19 +14,39 @@
|
|
|
14
14
|
"keywords": [
|
|
15
15
|
"ruvyxa",
|
|
16
16
|
"adapter",
|
|
17
|
-
"
|
|
17
|
+
"deploy",
|
|
18
|
+
"deployment",
|
|
18
19
|
"hosting",
|
|
19
|
-
"
|
|
20
|
+
"build",
|
|
21
|
+
"firebase",
|
|
22
|
+
"firebase-hosting",
|
|
23
|
+
"google",
|
|
24
|
+
"google-cloud",
|
|
25
|
+
"gcp",
|
|
26
|
+
"cloud-functions",
|
|
27
|
+
"cloud-functions-v2",
|
|
28
|
+
"functions",
|
|
29
|
+
"serverless",
|
|
30
|
+
"cdn",
|
|
31
|
+
"static-hosting",
|
|
32
|
+
"prerender",
|
|
33
|
+
"ssr",
|
|
34
|
+
"ssg",
|
|
35
|
+
"isr",
|
|
36
|
+
"static-assets",
|
|
37
|
+
"typescript",
|
|
38
|
+
"fullstack",
|
|
39
|
+
"framework"
|
|
20
40
|
],
|
|
21
41
|
"repository": {
|
|
22
42
|
"type": "git",
|
|
23
|
-
"url": "git+https://github.com/thirawat27/
|
|
43
|
+
"url": "git+https://github.com/thirawat27/Ruvyxa.git",
|
|
24
44
|
"directory": "packages/@ruvyxa/adapter-firebase"
|
|
25
45
|
},
|
|
26
46
|
"bugs": {
|
|
27
|
-
"url": "https://github.com/thirawat27/
|
|
47
|
+
"url": "https://github.com/thirawat27/Ruvyxa/issues"
|
|
28
48
|
},
|
|
29
|
-
"homepage": "https://github.com/thirawat27/
|
|
49
|
+
"homepage": "https://github.com/thirawat27/Ruvyxa#readme",
|
|
30
50
|
"engines": {
|
|
31
51
|
"node": ">=24.19.0"
|
|
32
52
|
},
|
|
@@ -40,7 +60,7 @@
|
|
|
40
60
|
}
|
|
41
61
|
},
|
|
42
62
|
"dependencies": {
|
|
43
|
-
"@ruvyxa/core": "^1.0
|
|
63
|
+
"@ruvyxa/core": "^1.1.0"
|
|
44
64
|
},
|
|
45
65
|
"scripts": {
|
|
46
66
|
"build": "tsc -p tsconfig.json",
|