javier-garcia-meteologica

Results 12 issues of javier-garcia-meteologica

Stylus loader uses the following options to support loading files from `node_modules` https://github.com/Anidetrix/rollup-plugin-styles/blob/418a5db352a8b402a723adfe74dc0cc830ba4121/src/loaders/stylus.ts#L22-L24 The problem with this configuration is that it only resolves `node_modules` correctly if the file sits on...

### Is your feature request related to a problem? Please describe. In javascript/typescript throwing anything but an error is considered an antipattern. Only errors should be thrown because: - Only...

Enhancement: Feature

## Proposal Right now effector catches most exceptions and sends them to console.error instead of letting them bubble up. Users of this library cannot listen to these errors or use...

question

The following is an example from the README documentation https://github.com/jest-community/jest-extended/blob/d8bd6ad4aa6df90c59026ae8344bd4b35b1abb0c/README.md?plain=1#L466-L469 In this example a date string is compared against a date. This is understandably useful because both datestrings and Dates...

I propose to make yalc simulate the behavior of a npm registry. `yalc [-p npm|yarn|pnpm] publish` would call `npm|yarn|pnpm pack` to create a `tgz` and then store that file in...

conventional-changelog supports scoped package names `@scope/conventional-changelog-custom-preset` but commitlint doesn't. https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog#preset commitlint will only load presets that start with `'conventional-changelog-'`, without scopes. https://github.com/conventional-changelog/commitlint/blob/73c30c3c7bb119dcde947b6dde26596cd9c983f4/%40commitlint/load/src/utils/load-parser-opts.ts#L18-L22 It's also very difficult to troubleshoot because there...

bug

Issue #49 - Configures global table definitions through the interface `StructureMap` using module augmentation instead of using `zapatos/schema`. This approach is more modular, allows an arbitrary number of modules making...

A malicious user could send the following input. ```ts // A regular user is expected to send `{ id: '123' }` // Malicious user sends this req.body = { 'id"...

Solves issue #101

The following code should throw an error but does not. ```ts db.sql`select ${db.cols(['this_col_does_not_exist'])} from ${'mytable'};` ``` The problem is that `db.cols(): ColumnNames` is being assigned to `Parameter`, which accepts anything....