stefaanMLB
stefaanMLB
**Issue type:** - [ ] question - [X] bug report - [ ] feature request - [ ] documentation issue **nestjs-config version** - "nestjs-config": "^1.4.10", **@nestjs/common+core or other package versions**...
It would be great to have variables at the request level that cache the values that were used before Basically, add a list the request window where on can add...
I created a store ``` import { VuexModule, Module, Mutation, Action } from 'vuex-module-decorators'; import axios from 'axios'; @Module({ name: 'myStore' }) export default class MyStore extends VuexModule { ......
How does vuex-module-decorators [module-style getters](https://vuex.vuejs.org/guide/getters.html) With the below store, accessing `this.$store.getters.test` in a component works fine While accessing `this.$store.getters.filteredUsers(this.searchText)` DOES compile without errors, it throws `"TypeError: this.$store.state.myStore.filteredUsers is not a...
These strings are not recognised : 'ISO-8859-1', 'ISO 8859-1', 'iso88591' Documentation is not clear about the valid values
**Describe the bug** Not sure this is a but or rather some problem with my setup. During the building of a docker image from my projet I get a `Cannot...
**Describe the bug** When a thunderclient windows is open in the editor groups and vscode is reloaded, all open editor tabs will reload except for the thunder client tabs **To...
Can the packages in repo be updated to the lastest versions ? I get this long list of update with `ncu` ``` @types/jest ^28.1.8 → ^29.5.8 @types/node ^18.6.1 → ^20.9.0...
The note files are now created in the root folder of the workspace. Would be grat to have the options to define a subfolder
```ts import { crush } from 'radash'; const test = { prop1: 'value1', 'prop2.sub1': 'value2', prop3: { prop4: 'value4', 'prop5.sub2': 'value5' } }; console.log(crush(test)); ``` outputs ``` { prop1: 'value1',...