Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: npm ci

- name: Test
run: npm run test && npm run lcov-report
run: npm run test

- uses: coverallsapp/github-action@master
with:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.11.1
24.10.0
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Build
FROM node:22.11.0-alpine3.20 AS build
FROM node:24.10-alpine AS build
ENV NO_UPDATE_NOTIFIER=true

USER node
Expand All @@ -17,7 +17,7 @@ RUN npm run build


### Deployment
FROM node:22.11.0-alpine3.20 AS deployment
FROM node:24.10-alpine AS deployment

ENV NO_UPDATE_NOTIFIER=true

Expand Down
2 changes: 1 addition & 1 deletion cfg/config_test.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
},
"templates": {
"prefix": "http://localhost:8080/",
"prefix": "http://localhost:8088/",
"root": "test/fixtures/",
"simple_message": {
"body": "test_message.hbs"
Expand Down
13 changes: 13 additions & 0 deletions esbuild.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import * as esbuild from 'esbuild'
import { commonifierPlugin } from '@restorecommerce/dev'

await esbuild.build({
entryPoints: ['./src/start.ts'],
bundle: true,
platform: 'node',
outfile: 'lib/start.cjs',
minify: true,
treeShaking: true,
sourcemap: 'linked',
plugins: [commonifierPlugin],
});
Loading
Loading