npm run serve를 통해 프로젝트를 실행 했더니
이해할 수 없는 error가 나왔다. 분명 개발 담당자 개발 환경에서는 나오지 않았을 것 같은데 내 노트북 개발 환경에서는 에러가 나온다는 것은 환경이 다르다는 이야기다.
처음 빌드를 했을 때 에러가 나길래 그 부분을 수정했다.
그리고 몇일이 지나 수정 사항을 Reset하고 다시 빌드를 하니 똑같은 에러가 나왔다.
Module Warning (from ./node_modules/eslint-loader/index.js):
error: Unnecessary use of boolean literals in conditional expression (no-unneeded-ternary) at src/views/search.vue:252:59:
250 | if (is) {
251 | if (xhr.result_code === 0) {
> 252 | this.userData.auth = (xhr.auth_yn === 'Y') ? true : false
| ^
253 | this.userData.name = xhr.data.name || ''
254 | this.userData.age = xhr.data.age || ''
255 | this.userData.birth = xhr.data.birth || ''
1 error found.
1 error potentially fixable with the `--fix` option.
친절하게도 어떻게 하면 해결할 수 있다고 알려주고 있지만 눈에 안들어온다.
xxxxx-MacBook-Pro:frontend xxxxx$ ./node_modules/.bin/eslint src --fix
를 실행하고,
xxxxx-MacBook-Pro:frontend xxxxx$ npm run serve
재실행했더니 오류가 깔끔하게 사라졌다.
'프로그래밍 > Vue.js' 카테고리의 다른 글
.babelrc에 대해... (0) | 2019.11.07 |
---|---|
Vue CLI - init과 각 옵션 (0) | 2019.11.06 |
Vue js dynamic class 적용 (0) | 2019.07.17 |
vue img src 동적구성 (0) | 2019.07.17 |
Hit error EACCES: permission denied, mkdir '/Users/xxxxx/.nvm/versions/node/v10.15.3/lib/node_modules/babel-cli/node_modules/fsevents/lib' 오류가 난다면... (0) | 2019.07.06 |