coderaiser

Results 103 issues of coderaiser

Cannot install webassemblyjs ``` error Couldn't find any versions for "@webassemblyjs/helper-numbers" that matches "1.11.3" info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command. Error: Couldn't find any versions for "@webassemblyjs/helper-api-error" that...

[MDN says](https://developer.mozilla.org/en-US/docs/WebAssembly/Understanding_the_text_format#getting_and_setting_locals_and_parameters) and [wabt](https://github.com/AssemblyScript/wabt.js) thinks that `local.get`: ```js inline:4:7: error: unexpected token get_local, expected ). get_local $n1 ^^^^^^^^^ ``` With such code: ```js import { traverse } from "@webassemblyjs/ast"; import...

I have `example.js`: ```js const fs = require('fs'); const indent = require('indent.js'); const data = fs.readFileSync('./index.js', 'utf8'); console.log(data); console.log(indent.js(data, {tabString: 4})); ``` When I run it, I see: ```js (function(mod)...

Would be great to have ability require css files without using `node_modules` prefix. When I doing: ``` js require('smalltalk/dist/smalltalk.min.css'); ``` As result I see: `ParseError: Unexpected token` and full content...

``` Warning deno task is unstable and may drastically change in the future Task coverage deno coverage coverage --exclude=test cover file:///Users/coderaiser/redline/loader.js ... 100.000% (23/23) ============================================================ Deno has panicked. This is...

stale

![image](https://user-images.githubusercontent.com/1573141/190278168-969be0a5-f70f-4376-80c2-05ae6ee317f7.png) >**Throughout your life advance daily, becoming more skillful than yesterday more skillful than today. This is never-ending.** > > **(c) Yamamoto Tsunetomo "Hagakure"** The time is come for a...

Fixes #1127 ## Proposed Changes Added 🐊[`Putout`](https://github.com/coderaiser/putout) linter. 1. ... 2. ... 3. ... ## Readiness Checklist ### Author/Contributor - [x] If documentation is needed for this change, has that...

O: stale πŸ€–

Would be great if `typos` can be used from JavaScript, in this case the [processor](https://github.com/coderaiser/putout#-processors) can be written and `typos` can be run from 🐊[**Putout**](https://github.com/coderaiser/putout) linter, it shows progress bar,...

enhancement

I made a [bundle](https://github.com/putoutjs/bundle) of 🐊[Putout](https://github.com/coderaiser/putout) that works on `node.js` and `deno`, but when I run with bun, I have an error: ```js coderaiser@localcmd:~/putout-bundle$ bun bundle/putout.js 58736 | .build("expression") 58737...

bug
transpiler

Hi, thank you for such a nice plugin :), would be amazing to have ability to transform such code: ```js const a, {x, y} from 'z' ``` Into ```js const...