Skip to content

Commit 361282d

Browse files
authored
feat: production release πŸš€ (#470)
1 parent f591cd4 commit 361282d

File tree

6 files changed

+117
-17
lines changed

6 files changed

+117
-17
lines changed

β€Ž.vscode/launch.jsonβ€Ž

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Debug Indexer Production",
6+
"type": "node",
7+
"request": "launch",
8+
"runtimeExecutable": "pnpm",
9+
"runtimeArgs": ["start:indexer:prod"],
10+
"preLaunchTask": "build-only",
11+
"console": "integratedTerminal",
12+
"env": {
13+
"NODE_ENV": "production"
14+
},
15+
"skipFiles": [
16+
"<node_internals>/**"
17+
],
18+
"sourceMaps": true,
19+
"outFiles": [
20+
"${workspaceFolder}/**/*.js"
21+
]
22+
},
23+
{
24+
"name": "Debug Indexer Development",
25+
"type": "node",
26+
"request": "launch",
27+
"runtimeExecutable": "pnpm",
28+
"runtimeArgs": ["start:indexer"],
29+
"preLaunchTask": "build-only",
30+
"console": "integratedTerminal",
31+
"env": {
32+
"NODE_ENV": "development"
33+
},
34+
"skipFiles": [
35+
"<node_internals>/**"
36+
],
37+
"sourceMaps": true,
38+
"outFiles": [
39+
"${workspaceFolder}/**/*.js"
40+
]
41+
},
42+
{
43+
"name": "Debug Indexer API development",
44+
"type": "node",
45+
"request": "launch",
46+
"runtimeExecutable": "pnpm",
47+
"runtimeArgs": ["start:indexer-api"],
48+
"preLaunchTask": "build-only",
49+
"console": "integratedTerminal",
50+
"env": {
51+
"NODE_ENV": "development"
52+
},
53+
"skipFiles": [
54+
"<node_internals>/**"
55+
],
56+
"sourceMaps": true,
57+
"outFiles": [
58+
"${workspaceFolder}/**/*.js"
59+
]
60+
},
61+
{
62+
"name": "Debug Indexer API production",
63+
"type": "node",
64+
"request": "launch",
65+
"runtimeExecutable": "pnpm",
66+
"runtimeArgs": ["start:indexer-api:prod"],
67+
"preLaunchTask": "build-only",
68+
"console": "integratedTerminal",
69+
"env": {
70+
"NODE_ENV": "production"
71+
},
72+
"skipFiles": [
73+
"<node_internals>/**"
74+
],
75+
"sourceMaps": true,
76+
"outFiles": [
77+
"${workspaceFolder}/**/*.js"
78+
]
79+
}
80+
]
81+
}

β€Ž.vscode/tasks.jsonβ€Ž

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build-only",
6+
"type": "shell",
7+
"command": "pnpm",
8+
"args": ["build"],
9+
"group": "build",
10+
"presentation": {
11+
"echo": true,
12+
"reveal": "always",
13+
"focus": false,
14+
"panel": "shared"
15+
},
16+
"problemMatcher": []
17+
}
18+
]
19+
}

β€Žpackages/indexer-api/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"author": "",
2323
"license": "ISC",
2424
"dependencies": {
25-
"@across-protocol/constants": "^3.1.90",
25+
"@across-protocol/constants": "^3.1.91",
2626
"@across-protocol/sdk": "^4.3.97",
2727
"@repo/error-handling": "workspace:*",
2828
"@repo/indexer": "workspace:*",

β€Žpackages/indexer-database/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"author": "",
2626
"license": "ISC",
2727
"dependencies": {
28-
"@across-protocol/constants": "^3.1.90",
28+
"@across-protocol/constants": "^3.1.91",
2929
"@across-protocol/sdk": "^4.3.97",
3030
"ethers": "^5.8.0",
3131
"pg": "^8.4.0",

β€Žpackages/indexer/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"author": "",
2525
"license": "ISC",
2626
"dependencies": {
27-
"@across-protocol/constants": "^3.1.90",
27+
"@across-protocol/constants": "^3.1.91",
2828
"@across-protocol/contracts": "^4.1.14",
2929
"@across-protocol/sdk": "^4.3.97",
3030
"@google-cloud/pubsub": "^5.2.0",

β€Žpnpm-lock.yamlβ€Ž

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)