Ryosuke Iwanaga

Results 34 comments of Ryosuke Iwanaga

Interesting! I wrote my anyenv two years ago. Here is github.com, where you can use any name space under your account. For example, there are many `phpenv` repositories. So, I...

Currently, we use `patch-package` https://github.com/autifyhq/autify-cli/blob/main/patches/oclif%2B3.2.1.patch (including another patch there)

@yusukebe @Code-Hex Thank you so much for your feedback! > Can we create a machine user with npmjs? When I looked for a way to do it, I couldn't find...

Related to https://github.com/oclif/core/issues/482 ?

Without `import i18n from "i18next"`, `wmr build` won't load any `babel` plugins: ```shell > wmr build --prerender --debug wmr:config { wmr:config _: [], wmr:config prerender: true, wmr:config debug: true, wmr:config...

Captured the actual error by development env: ``` Error: Unexpected token (npm/@babel/[email protected]/helpers/esm/possibleConstructorReturn.js:2:8) at transform (file:///Users/riywo/GitHub/wmr/packages/wmr/src/lib/acorn-traverse.js:1264:23) at Object.transform (file:///Users/riywo/GitHub/wmr/packages/wmr/src/plugins/import-assertion.js:31:16) at file:///Users/riywo/GitHub/wmr/node_modules/rollup/dist/es/shared/rollup.js:18755:25 ``` Exception: ``` SyntaxError: Unexpected token (2:7) at Object.pp$4.raise (file:///Users/riywo/GitHub/wmr/node_modules/rollup/dist/es/shared/rollup.js:15543:13)...

It seems `assert` after `import` is treated as special keyword. Once I replace `assertThisInitialized` to the other word, `parse()` succeeds: ``` > parse(code) Uncaught SyntaxError: Unexpected token (2:7) > parse(code.replaceAll("assertThisInitialized",...