반응형
[Electron] build 시 unresolved modules 오류 해결 방법
Electron Build 할 때 아래와 같이 jQuery, popper 등 오류날 경우
> build Configuring yargs through package.json is deprecated and will be removed in the next major release, please use the JS API instead. Configuring yargs through package.json is deprecated and will be removed in the next major release, please use the JS API instead. • electron-builder version=20.39.0 • loaded configuration file=package.json ("build" field) • writing effective config file=builder-effective-config.yaml Error: Unresolved node modules: jquery ...중략...
js를 npm으로 설치해 주면 된다.
ex) jquery 오류 난 경우
$ npm install jquery --save
[참고] https://github.com/electron-userland/electron-builder/issues/2529
반응형
'WEB > Electron' 카테고리의 다른 글
[Electron] electron 최신 버전으로 업그레이드 (0) | 2019.05.04 |
---|---|
[Electron] 빌드(build) 하기 ( electron-builder ) (0) | 2019.04.29 |
[Electron] img 태그 src="file://~" 경로에 존재하는 파일이 로드되지 않는 경우 해결 방법 (0) | 2019.04.24 |
[Electron] HTML에 다른 HTML 파일을 include하여 사용하기 (0) | 2019.04.16 |
[Electron] 탐색기 여는 방법 (0) | 2019.04.08 |