BartusZak

Results 24 comments of BartusZak

PUT with associated models is still not working

Confirmed - resolved by reverting to 0.2.37

@Enase thanks for comment. Missing `provider` is not the problem here. Originally it's there. I just have cut too much and forgot to include it in my comment. :D I...

``` C:\Users\bploszynski>localstack start C:\Users\bploszynski>python C:\Python38\Scripts\\localstack start 'uname' is not recognized as an internal or external command, operable program or batch file. LocalStack version: 0.12.1 Starting local dev environment. CTRL-C to...

Changing: ```json "cy:parallel": "cypress-parallel -s cy:run -t 2 -d ./src/integration ", ``` Installing: ```json "cypress-multi-reporters": "^1.6.1", ``` Allowed me to run tests.

```ts new ForkTsCheckerWebpackPlugin({ devServer: false, typescript: { // diagnosticOptions: { // semantic: true, // syntactic: true // }, mode: 'write-references', memoryLimit: 4096, configOverwrite: { compilerOptions: { skipLibCheck: true } }...

Now I see only `node_modules` related errors without "my code`. > Found 93 errors. ```powershell ./node_modules/.bin/tsc ``` Terminal output ```powershell ./node_modules/.bin/tsc node_modules/@types/jest/index.d.ts:416:62 - error TS1005: ] expected. 416 type NonFunctionPropertyNames...

The same. > `./node_modules/.bin/tsc --noEmit --project ./tsconfig.json` > Found 93 errors. Terminal output ```powershell node_modules/@types/jest/index.d.ts:416:62 - error TS1005: ] expected. 416 type NonFunctionPropertyNames = keyof { [K in keyof T...

That is exactly what I'm looking for. As a solution I can suggest to add new property called e.g `no-close-on-backdrop` and simply ```js onClickOut(){ if (this.noCloseOnBackdrop) return } ```