Axetroy

Results 99 comments of Axetroy

Maybe generating a `.ps1` file and processing it by PowerShell can do this ```shell iwr https://gobinaries.com/rakyll/hey?ps1=1 -useb | iex ```

@tj Here is an example for Windows installation. ```bash iwr https://deno.land/x/install/install.ps1 -useb | iex ``` https://deno.land/x/[email protected]/install.ps1 I think it can be used in Golang with a little modification The user...

Here is for info ``` Showing nodes accounting for 407.33MB, 99.07% of 411.16MB total Dropped 24 nodes (cum

@ZaLiTHkA , i run `yo` and selete `Angular` to init the project it run `npm install` by this generator after i find the command `grunt test` fail,then I run the...

It seems that deno-canary is redundant We can check whether it is a hash from deno-version ```diff steps: - uses: denolib/setup-deno@v3 with: deno-version: 973af61d8bb03c1709f61e456581d58386ed4952 - deno-canary: true ```

I personally prefer not to bring any BREAKING CHANGES. I want users to always use v2. Especially this PR(https://github.com/actions/starter-workflows/pull/604) have been merged. ```yml steps: - uses: denolib/setup-deno@v2 with: deno-version: canary...

> https://github.com/denolib/setup-deno/blob/482dc739be8628399f8b04bd11876f7d9a24f625/src/installer.ts#L193-L194 > > Is there `gzip` in `self-hosted`? This is indeed a problem, we should use the gzip implemented in pure nodejs

有一些是无法检测到的。 比如promise的Q库,通过webpack,或者其他打包工具require进来的。 就不存在全局对象。 没办法通过`window.xx`来检测

I try it in webpack@4, It seem not work ``` ERROR in Entry module not found: Error: Can't resolve '/path/to/virtual/file/module.js' in 'xxx' ```

Here is the relative issue https://github.com/webpack/webpack/issues/6437 I have try it in entry point, and it didn't work.