create-eclesia-indexer 1.0.4 → 1.0.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-eclesia-indexer",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "CLI tool to scaffold Cosmos SDK chain indexers using eclesia-indexer-core",
5
5
  "type": "module",
6
6
  "bin": {
@@ -21,4 +21,6 @@ RUN npm ci --only=production && npm cache clean --force
21
21
 
22
22
  COPY --from=builder /usr/src/app .
23
23
 
24
+ RUN npm run build
25
+
24
26
  ENTRYPOINT ["node", "dist/index.js" ]
@@ -25,4 +25,6 @@ RUN pnpm install --frozen-lockfile --prod
25
25
 
26
26
  COPY --from=builder /usr/src/app .
27
27
 
28
+ RUN pnpm run build
29
+
28
30
  ENTRYPOINT ["node", "dist/index.js" ]
@@ -22,4 +22,6 @@ RUN yarn install --frozen-lockfile --production && \
22
22
 
23
23
  COPY --from=builder /usr/src/app .
24
24
 
25
+ RUN yarn run build
26
+
25
27
  ENTRYPOINT ["node", "dist/index.js" ]
@@ -30,9 +30,9 @@
30
30
  "@cosmjs/proto-signing": "^0.36.0",
31
31
  "@cosmjs/stargate": "^0.36.0",
32
32
  "@cosmjs/tendermint-rpc": "^0.36.0",
33
- "@eclesia/basic-pg-indexer": "^2.9.4",
34
- "@eclesia/core-modules-pg": "^2.9.4",
35
- "@eclesia/indexer-engine": "^2.9.4",
33
+ "@eclesia/basic-pg-indexer": "^2.9.6",
34
+ "@eclesia/core-modules-pg": "^2.9.6",
35
+ "@eclesia/indexer-engine": "^2.9.6",
36
36
  "bignumber.js": "^9.3.1",
37
37
  "json-with-bigint": "^3.4.4",
38
38
  "pg": "^8.16.3"