@tachyon-gg/railway-deploy 0.2.10 → 0.3.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 +322 -139
- package/dist/index.js +4325 -2207
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tachyon-gg/railway-deploy",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"postbuild": "printf '#!/usr/bin/env node\\n' | cat - dist/index.js > dist/tmp && mv dist/tmp dist/index.js",
|
|
23
23
|
"prepublishOnly": "bun run build && bun run test && bun run typecheck",
|
|
24
24
|
"typecheck": "tsc --noEmit",
|
|
25
|
-
"codegen": "graphql-codegen --config codegen.ts",
|
|
25
|
+
"codegen": "graphql-codegen --config codegen.ts && bun run scripts/generate-schemas.ts && biome format --write schemas/",
|
|
26
26
|
"test": "bun test --bail --test-name-pattern '^(?!Railway Integration)' test/",
|
|
27
27
|
"test:coverage": "bun test --bail --coverage --coverage-reporter=text --coverage-reporter=lcov --coverage-dir=coverage test/*.test.ts",
|
|
28
|
-
"test:integration": "bun test --bail --timeout
|
|
29
|
-
"test:all": "bun test --bail --timeout
|
|
28
|
+
"test:integration": "bun test --bail --timeout 120000 --env-file .env.test test/integration/",
|
|
29
|
+
"test:all": "bun test --bail --timeout 60000 --env-file .env.test test/",
|
|
30
30
|
"lint": "biome check .",
|
|
31
31
|
"lint:fix": "biome check --write .",
|
|
32
32
|
"format": "biome format --write .",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@graphql-typed-document-node/core": "^3.2.0",
|
|
37
37
|
"commander": "^14.0.3",
|
|
38
|
+
"consola": "^3.4.2",
|
|
38
39
|
"dotenv": "^17.3.1",
|
|
39
40
|
"fast-deep-equal": "^3.1.3",
|
|
40
41
|
"graphql": "^16.10.0",
|