프론트 개발 블로그

[Error] String does not match the pattern of "^(?:@[a-z0-9-*~][a-z0-9-*._~]*/)?[a-z0-9-~][a-z0-9-._~]*$". 본문

Works

[Error] String does not match the pattern of "^(?:@[a-z0-9-*~][a-z0-9-*._~]*/)?[a-z0-9-~][a-z0-9-._~]*$".

maybe.b50 2021. 5. 3. 14:59

package.json 작성 중 나타난 에러 

String does not match the pattern of "^(?:@[a-z0-9-*~][a-z0-9-*._~]*/)?[a-z0-9-~][a-z0-9-._~]*$".

 

name 에 들어간 대문자때문에 생긴 에러였다.

name 작성 할 때 대문자 그리고 띄어쓰기가 허용되지 않기 때문에

소문자로 작성하고 띄어쓰기는 '-' 하이픈으로 대체한다.

 

 

참고!

package.json 파일에 NPM 규칙을 적용하기 위해 발생하는 에러라고 한다.

 

stackoverflow.com/questions/48694816/vscode-package-json-string-does-not-match-the-pattern

 

 

 

반응형