Marc Bernard

Results 139 issues of Marc Bernard

Replaces various `require('package.json')` statements with core function that reads `package.json` from file system.

topic: maintenance

You can now specify a storage location for assets in the web configuration: ```yaml web: title: verdaccio assetFolder: ./path/to/assets ``` Files in this folder will be served under `/-/assets/`. For...

topic: feature request
topic: web

This fixes the following error ` package-specific path is not under the configured storage directory ` on Windows. The order of `path.resolve` and `path.join` was not compatible with Windows. Before:...

plugin: local-storage

With http logging, the log contains a status 200 entry for each request. Examples: ``` info

topic: logging
topic: middleware
status: waiting reply

There are errors creating the git tags for some of the plugins. https://github.com/verdaccio/verdaccio/actions/runs/16102834840

github_actions

Case where class-name is required but abaplint shows error. Often found in constructors. ``` /zfoo.prog.abap[13, 5]: Reference to current class can be omitted: "ZCL_TESTS=>"(prefix_is_current_class) ``` Example: ```abap CLASS zcl_tests DEFINITION...

`bal_tt_msg` does not exist in lower releases. Replaced by local type.

The etl exercise solution runs into a todo: https://github.com/exercism/abap/actions/runs/19519786228?pr=337 https://github.com/exercism/abap/blob/main/exercises/practice/etl/.meta/zcl_etl.clas.abap https://github.com/abaplint/transpiler/blob/main/packages/transpiler/src/expressions/value_body.ts

CI failing on this class: https://github.com/exercism/abap/actions/runs/19519786228?pr=337 https://github.com/exercism/abap/blob/main/exercises/practice/secret-handshake/.meta/zcl_secret_handshake.clas.abap This add an extra `)` to the transpiled code: ```abap IF binary_code BIT-AND CONV xstring( 16 ) > binary_zero. ``` This works: ```abap...