8c0bb30530
JS packaging is complicated and testing it manually is irritating. Add a tool in `automerge-js/e2e` which stands up a local NPM registry and publishes the various packages to that registry for use in automated and manual tests. Update the test script in `scripts/ci/js_tests` to run the tests using this tool
28 lines
540 B
YAML
28 lines
540 B
YAML
storage: "./verdacciodb"
|
|
auth:
|
|
htpasswd:
|
|
file: ./htpasswd
|
|
publish:
|
|
allow_offline: true
|
|
logs: {type: stdout, format: pretty, level: info}
|
|
packages:
|
|
"automerge-types":
|
|
access: "$all"
|
|
publish: "$all"
|
|
"automerge-wasm":
|
|
access: "$all"
|
|
publish: "$all"
|
|
"automerge-js":
|
|
access: "$all"
|
|
publish: "$all"
|
|
"*":
|
|
access: "$all"
|
|
publish: "$all"
|
|
proxy: npmjs
|
|
"@*/*":
|
|
access: "$all"
|
|
publish: "$all"
|
|
proxy: npmjs
|
|
uplinks:
|
|
npmjs:
|
|
url: https://registry.npmjs.org/
|