rari 0.7.0 → 0.7.1
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/dist/cli.mjs
CHANGED
|
@@ -206,7 +206,7 @@ async function deployToRailway() {
|
|
|
206
206
|
logError(`Already running in ${getPlatformName()} environment. Use "rari start" instead.`);
|
|
207
207
|
process.exit(1);
|
|
208
208
|
}
|
|
209
|
-
const { createRailwayDeployment } = await import("./railway-
|
|
209
|
+
const { createRailwayDeployment } = await import("./railway-DVrZWPOO.mjs");
|
|
210
210
|
await createRailwayDeployment();
|
|
211
211
|
}
|
|
212
212
|
async function deployToRender() {
|
|
@@ -50,7 +50,7 @@ async function createRailwayDeployment() {
|
|
|
50
50
|
}
|
|
51
51
|
const railwayConfig = {
|
|
52
52
|
$schema: "https://railway.app/railway.schema.json",
|
|
53
|
-
build: { builder: "
|
|
53
|
+
build: { builder: "RAILPACK" },
|
|
54
54
|
deploy: {
|
|
55
55
|
startCommand: "npm start",
|
|
56
56
|
healthcheckPath: "/",
|
|
@@ -59,7 +59,8 @@ async function createRailwayDeployment() {
|
|
|
59
59
|
},
|
|
60
60
|
environments: { production: { variables: {
|
|
61
61
|
NODE_ENV: "production",
|
|
62
|
-
RUST_LOG: "info"
|
|
62
|
+
RUST_LOG: "info",
|
|
63
|
+
RAILPACK_DEPLOY_APT_PACKAGES: "libfontconfig1"
|
|
63
64
|
} } }
|
|
64
65
|
};
|
|
65
66
|
const railwayJsonPath = join(cwd, "railway.json");
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rari",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.1",
|
|
5
5
|
"description": "Runtime Accelerated Rendering Infrastructure (Rari)",
|
|
6
6
|
"author": "Ryan Skinner",
|
|
7
7
|
"license": "MIT",
|
|
@@ -93,14 +93,14 @@
|
|
|
93
93
|
"picocolors": "^1.1.1"
|
|
94
94
|
},
|
|
95
95
|
"optionalDependencies": {
|
|
96
|
-
"rari-darwin-arm64": "0.7.
|
|
97
|
-
"rari-darwin-x64": "0.7.
|
|
98
|
-
"rari-linux-arm64": "0.7.
|
|
99
|
-
"rari-linux-x64": "0.7.
|
|
100
|
-
"rari-win32-x64": "0.7.
|
|
96
|
+
"rari-darwin-arm64": "0.7.1",
|
|
97
|
+
"rari-darwin-x64": "0.7.1",
|
|
98
|
+
"rari-linux-arm64": "0.7.1",
|
|
99
|
+
"rari-linux-x64": "0.7.1",
|
|
100
|
+
"rari-win32-x64": "0.7.1"
|
|
101
101
|
},
|
|
102
102
|
"devDependencies": {
|
|
103
|
-
"@types/node": "^25.0.
|
|
103
|
+
"@types/node": "^25.0.7",
|
|
104
104
|
"@types/react": "^19.2.8",
|
|
105
105
|
"@typescript/native-preview": "^7.0.0-dev.20260112.1",
|
|
106
106
|
"chokidar": "^5.0.0",
|
|
@@ -66,7 +66,7 @@ export async function createRailwayDeployment() {
|
|
|
66
66
|
const railwayConfig = {
|
|
67
67
|
$schema: 'https://railway.app/railway.schema.json',
|
|
68
68
|
build: {
|
|
69
|
-
builder: '
|
|
69
|
+
builder: 'RAILPACK',
|
|
70
70
|
},
|
|
71
71
|
deploy: {
|
|
72
72
|
startCommand: 'npm start',
|
|
@@ -79,6 +79,7 @@ export async function createRailwayDeployment() {
|
|
|
79
79
|
variables: {
|
|
80
80
|
NODE_ENV: 'production',
|
|
81
81
|
RUST_LOG: 'info',
|
|
82
|
+
RAILPACK_DEPLOY_APT_PACKAGES: 'libfontconfig1',
|
|
82
83
|
},
|
|
83
84
|
},
|
|
84
85
|
},
|