Skip to content
Open
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 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