You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rhwp-shared/security/ 모듈이 현재 CommonJS exports만 지원함 (module.exports).
PR #169 (Firefox 확장) 구현 시, Firefox의 background script가 "type": "module"
모드로 동작하여 직접 import 사용이 필요한 상황이 발생함.
변경
rhwp-shared/security/url-validator.js 파일 하단에 ES module export { ... } 추가
rhwp-shared/security/sender-validator.js 파일 하단에 ES module export { ... } 추가
배경
rhwp-shared/security/모듈이 현재 CommonJS exports만 지원함 (module.exports).PR #169 (Firefox 확장) 구현 시, Firefox의 background script가
"type": "module"모드로 동작하여 직접
import사용이 필요한 상황이 발생함.변경
rhwp-shared/security/url-validator.js파일 하단에 ES moduleexport { ... }추가rhwp-shared/security/sender-validator.js파일 하단에 ES moduleexport { ... }추가영향
*.test.js): 변화 없음구현
PR #169 내 커밋으로 함께 포함됨.