engine icon indicating copy to clipboard operation
engine copied to clipboard

Scalable Web Application Engine

Results 67 engine issues
Sort by recently updated
recently updated
newest added

the entire code of generating a web entrypoint (`create-entrypoint.ts` in `engine-scripts`) is a combination of template strings. This makes this peace of code to be very prone to errors and...

good first issue

![image](https://user-images.githubusercontent.com/56086371/119311771-26ec8980-bc7a-11eb-8b77-13ad23550b2f.png) to reproduce: use prepack

For example, with `yarn start:all --projectPath ../some-project --freshlyCloned`, the value of `freshlyCloned` will be undefined, not `true`. However, with `yarn start:all --freshlyCloned --projectPath ../some-project`, the value of `freshlyCloned` will be...

currently engine-scripts includes both dev-time and runtime functionality, such that its consumers are dependant on html-webpack-plugin. consider separating the runtime functionality to a separate location, s.t only the runtime functionality...

Sometimes a feature needs to define a service for its internal use. But currently there's no way to prevent other features from using it.

enhancement

Currently, cross-environment service subscriptions can only be defined as `myService.subscribe(listener)` It would be really useful to also allow event name as the first argument: `myService.subscribe(event, listener)` Right now the engine...

enhancement

Currently, when calling a service defined in a single-endpoint browser environment from a node environment, the engine either completes the request, or leaves it in a pending state indefinitely (if...

When starting the engine it picks up every `.config.js` file as a feature config file. E.g. when running a feature called project-picker I'm getting the following: ```sh $ engineer start...

When running `engineer --help`, descriptions of commands are missing. E.g. what the difference between `engineer start` and `engineer run`? ``` ꕤ ~/Projects/component-studio yarn engineer --help yarn run v1.22.10 $ /Users/alexeyl/Projects/component-studio/node_modules/.bin/engineer...

good first issue

When trying to run a feature that is designed to work on a specific env context (`live-server`/`worker`) on another env context, it would be helpful the get a meaningful error\alert.