jase

Results 19 issues of jase

**Describe the bug** If adding an output target to a library all supported output targets need to be installed. This is probably how the nxext code is implemented, so that...

bug

resolve path of injectedGlobals relative to config file (fallback to rootDir if optional configPath is not set) fixes https://github.com/ionic-team/stencil-sass/issues/49

## Current Behavior If using injectGlobalPaths parameter ``` plugins: [ sass({ injectGlobalPaths: ['src/globals/variables.scss'], }), ], ``` the build fails with ``` [ ERROR ] sass error: ...tencil-example/libs/web-components/src/components/my-component/my-component.scss:1:9 Can't find stylesheet...

Bug: Validated
Help Wanted

First off all: Thank you, great template project. Nice toolset It would be great if the template would have the latest dependencies by default, e.g. - Angular 10.x (instead of...

I get false-positives for the rule **no-array-method-this-argument** if using [find from cypress](https://docs.cypress.io/api/commands/find). Strangely this only occurs if the argument for find is a separate variable, see example: ```js const selector...

bug

fixes #18400 @TiFu (2017/07) @taxpon (2017/07) @sebastianhaas (2017/07) @kenisteward (2017/07) @Vrolijkx (2017/09) @macjohnny (2018/01) @topce (2018/10) @akehir (2019/07) @petejohansonxo (2019/11) @amakhrov (2020/02) @davidgamero (2022/03) @mkusaka (2022/04) ### PR checklist -...

Would be great to have a JSON schema of the `audit-resolve.json` that is applied initially. like ```json { "$schema": "node_modules/npm-audit-resolver/schema.json", // ... } ``` This would make clearer for devs...

fixes: https://github.com/CycloneDX/cyclonedx-node-npm/issues/158 - add node logger with npm package `pino`. See [GitHub](https://github.com/pinojs/pino) or [Docs](https://getpino.io/) - Why pino? - one of the newer logging packages with very active community - node...

Protocol buffers are allowing to create own options. Example: ``` import "google/protobuf/descriptor.proto"; extend google.protobuf.MessageOptions {   optional string my_option = 51234; } message MyMessage {   option (my_option) = "Hello world!"; }...