hata6502

Results 14 comments of hata6502

I'm looking forward to this feature!

I've launched the unofficial jscpd service! It crawls public repositories in GitHub automatically. It can't accept crawling requests. Please see: example: https://jscpd.b-hood.site/github/codex-team/editor.js sitemap: https://jscpd.b-hood.site/sitemap.html repository: https://github.com/hata6502/jscpd-service

unofficial docker image: https://github.com/hata6502/jscpd-docker

A short solution: https://github.com/hata6502/jscpd-docker Dockerfile: ``` FROM node:14.15.5-alpine3.13 RUN npm install -g jscpd WORKDIR /target CMD jscpd ```

I resolved the arrow direction issue in myself. https://user-images.githubusercontent.com/7702653/129482654-80363278-ddcb-42ca-818a-02e8b141dded.mp4 Commit: https://github.com/hata6502/troopa-wasm/commit/c305689ddb5010a678130db03695845c86ef4526 By using `useEffect()`, the arrow direction is updated every 200 ms. ```tsx useEffect(() => { const handle = ()...

It doesn't work: ``` const prevFakeBackGround = this.fakeBackground; this.fakeBackground = document.createElement('span'); this.fakeBackground.style.backgroundColor = 'red'; const range = selection.getRangeAt(0); this.fakeBackground.append(range.extractContents()); if (prevFakeBackGround) { // TODO: unificate const clonedNodes = Array.from(prevFakeBackGround.childNodes).map((node) =>...

This problem seems to be due to npm v7 and v8. The behavior of `npm run` with root, is changed between npm v6 and v7. - https://docs.npmjs.com/cli/v6/using-npm/scripts#user - https://docs.npmjs.com/cli/v7/using-npm/scripts#user When...

This behavior may be difficult for Ubuntu Desktop user. I resolved it by `sudo chown -R root:root node-docker-test/`, but is it the correctly solution?

@ondrej-langr You can try submitting a pull request. https://github.com/hata6502/editorjs-layout/pulls

This issue is resolved by installing npm **v9** 🎉 https://github.blog/changelog/2022-10-24-npm-v9-0-0-released/ > We believe the changes made lay the ground-work for future improvements to the default npm experience long-term. Notably, Docker...